debug: change WARN to print condition as message
This commit is contained in:
parent
0501d0a87a
commit
21725e9b99
@ -47,14 +47,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#define WARN(MSG) do { \
|
#define WARN(C) do { \
|
||||||
std::cerr << __FILE__ << ":" << __func__ << ":" __LINE__ << ", " << (MSG) << std::endl; \
|
|
||||||
} while (0)
|
|
||||||
|
|
||||||
|
|
||||||
#define WARN_IF(C, MSG) do { \
|
|
||||||
if (C) { \
|
if (C) { \
|
||||||
std::cerr << __FILE__ << ":" << __func__ << ":" __LINE__ << ", " << (MSG) << std::endl; \
|
std::cerr << __FILE__ << ":" << __func__ << ":" << __LINE__ << ", " << #C << std::endl; \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user