<div dir="ltr">But even if assert(e) expands to nothing, the compiler should report an error if you pass two arguments to the assert macro that takes just one. At least Clang on macOS and gcc on Linux do:<br><br><font face="monospace, monospace">assert.cpp:5:17: error: too many arguments provided to function-like macro invocation<br>  assert(false, "sdsdf");<br></font><br>and<div><br><font face="monospace, monospace">assert.cpp:5:24: error: macro "assert" passed 2 arguments, but takes just 1<br>   assert(false, "sdsdf");<br></font><br>In the NDEBUG case, where assert is defined as:<br><br><font face="monospace, monospace">#define assert(e)       ((void)0)<br></font><br>and<br><br><font face="monospace, monospace"># define assert(expr)           (__ASSERT_VOID_CAST (0))<br></font><br><div>Regina, try adding some very obvious syntax error, some foo bar zap, after the assert(false, "Standard layer may not be deleted.");, to see if that line even is compiled.<br><br>--tml<br><br></div></div></div>