summaryrefslogtreecommitdiff
path: root/zen/assert_static.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/assert_static.h')
-rw-r--r--zen/assert_static.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/assert_static.h b/zen/assert_static.h
index b96b5909..d61dd1e3 100644
--- a/zen/assert_static.h
+++ b/zen/assert_static.h
@@ -37,7 +37,7 @@ struct CompileTimeError<true> {};
#endif
*/
-//C++11: at least get rid of this pointless string literal requirement
+//C++11: please get rid of this pointless string literal requirement!
#define assert_static(X) \
static_assert(X, "Static assert has failed!");
bgstack15