FastLED 3.9.15
Loading...
Searching...
No Matches

◆ FL_WARN_GT

#define FL_WARN_GT ( lhs,
rhs )
Value:
do { \
if (!((lhs) > (rhs))) { \
fl::sstream _fl_warn_ss; \
_fl_warn_ss << "Warning: " << #lhs << " > " << #rhs \
<< " failed: " << (lhs) << " <= " << (rhs); \
fl::test::outputMessage(_fl_warn_ss.str().c_str(), __FILE__, __LINE__); \
} \
} while (0)
const char * c_str() const FL_NOEXCEPT
string str() const FL_NOEXCEPT
Definition strstream.h:43

Definition at line 927 of file fltest.h.

927#define FL_WARN_GT(lhs, rhs) \
928 do { \
929 if (!((lhs) > (rhs))) { \
930 fl::sstream _fl_warn_ss; \
931 _fl_warn_ss << "Warning: " << #lhs << " > " << #rhs \
932 << " failed: " << (lhs) << " <= " << (rhs); \
933 fl::test::outputMessage(_fl_warn_ss.str().c_str(), __FILE__, __LINE__); \
934 } \
935 } while (0)