Fix pointer restrict for C++ compilers ()

This commit is contained in:
obones 2023-01-31 11:40:28 +01:00 committed by GitHub
parent 3597af8221
commit 76485a0909
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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