Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cpp_compat.h « FastLED-master « Библиотеки - github.com/AlexGyver/Arduino_Ambilight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab5b773aa427379fcc02406c507187fd9211d1a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __INC_CPP_COMPAT_H
#define __INC_CPP_COMPAT_H

#include "FastLED.h"

#if __cplusplus <= 199711L

#define static_assert(expression, message)
#define constexpr const

#else

// things that we can turn on if we're in a C++11 environment
#endif

#endif