do { \
if (!((lhs) >= (rhs))) { \
_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
947#define FL_WARN_GE(lhs, rhs) \
948 do { \
949 if (!((lhs) >= (rhs))) { \
950 fl::sstream _fl_warn_ss; \
951 _fl_warn_ss << "Warning: " << #lhs << " >= " << #rhs \
952 << " failed: " << (lhs) << " < " << (rhs); \
953 fl::test::outputMessage(_fl_warn_ss.str().c_str(), __FILE__, __LINE__); \
954 } \
955 } while (0)