base: Add a warn_if macro
authorAndreas Sandberg <andreas.sandberg@arm.com>
Sun, 21 Jun 2015 19:52:13 +0000 (20:52 +0100)
committerAndreas Sandberg <andreas.sandberg@arm.com>
Sun, 21 Jun 2015 19:52:13 +0000 (20:52 +0100)
Add a warn if macro that is analogous to the panic_if and fatal_if.

src/base/misc.hh

index 5f89e5f1d34d793267665d28cdfc2c512c08d700..b62548eb2ceaf43c3d05915d832e748d9f2c220c 100644 (file)
@@ -218,6 +218,20 @@ extern bool want_hack, hack_verbose;
 #define hack_once(...) \
     cond_message_once(want_hack, std::cerr, "hack", hack_verbose, __VA_ARGS__)
 
+/**
+ * Conditional warning macro that checks the supplied condition and
+ * only prints a warning if the condition is true. Useful to replace
+ * if + warn.
+ *
+ * @param cond Condition that is checked; if true -> warn
+ * @param ...  Printf-based format string with arguments, extends printout.
+ */
+#define warn_if(cond, ...) \
+    do { \
+        if ((cond)) \
+            warn(__VA_ARGS__); \
+    } while (0)
+
 /**
  * The chatty assert macro will function like a normal assert, but will allow the
  * specification of additional, helpful material to aid debugging why the