Files
klubhaus-doorbell/libraries/FastLED/src/fl/avr_disallowed.h
2026-02-12 00:45:31 -08:00

9 lines
213 B
C

#pragma once
#ifdef __AVR__
#define AVR_DISALLOWED \
[[deprecated("This function or class is deprecated on AVR.")]]
#else
#define AVR_DISALLOWED
#endif