FastLED 3.9.12
Loading...
Searching...
No Matches
deprecated.h
1#if defined(__GNUC__) // GCC or Clang
2# ifndef FASTLED_DEPRECATED
3# if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
4# define FASTLED_DEPRECATED(msg) __attribute__((deprecated(msg)))
5# else
6# define FASTLED_DEPRECATED(msg) __attribute__((deprecated))
7# endif
8# endif
9#else // Other compilers
10# ifndef FASTLED_DEPRECATED
11# define FASTLED_DEPRECATED(msg)
12# endif
13#endif