Fix pointer restrict for C++ compilers (#2351)
This commit is contained in:
parent
3597af8221
commit
76485a0909
1 changed files with 2 additions and 2 deletions
|
@ -17,8 +17,8 @@
|
|||
#include <time.h>
|
||||
#include "compat_time.h"
|
||||
|
||||
#if defined _MSC_VER || defined ESP32 // Microsoft Visual Studio or ESP32
|
||||
// MSC and ESP32 have something like C99 restrict as __restrict
|
||||
#if defined _MSC_VER || defined __cplusplus // Microsoft Visual Studio or C++ compilers (G++ is used by ESP32, ESP8266...)
|
||||
// MSC and C++ compilers have something like C99 restrict as __restrict
|
||||
#ifndef restrict
|
||||
#define restrict __restrict
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue