tmp/tmpsjj2ho7x/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### The `assert` macro <a id="assertions.assert">[[assertions.assert]]</a>
|
| 2 |
+
|
| 3 |
+
An expression `assert(E)` is a constant subexpression (
|
| 4 |
+
[[defns.const.subexpr]]), if
|
| 5 |
+
|
| 6 |
+
- `NDEBUG` is defined at the point where `assert` is last defined or
|
| 7 |
+
redefined, or
|
| 8 |
+
- `E` contextually converted to `bool` (Clause [[conv]]) is a constant
|
| 9 |
+
subexpression that evaluates to the value `true`.
|
| 10 |
+
|