Add a warn macro
This commit is contained in:
parent
cdd1f60b0d
commit
e2b56f3b77
@ -33,6 +33,11 @@
|
||||
}
|
||||
|
||||
|
||||
#define warn(MSG) do { \
|
||||
std::cerr << __FILE__ << ":" << __func__ << ":" __LINE__ << ", " << (MSG) << std::endl; \
|
||||
} while (0)
|
||||
|
||||
|
||||
#define warn_if(C, MSG) do { \
|
||||
if (C) { \
|
||||
std::cerr << __FILE__ << ":" << __func__ << ":" __LINE__ << ", " << (MSG) << std::endl; \
|
||||
|
Loading…
Reference in New Issue
Block a user