tmp/tmp4zcw_bsq/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Header `<debugging>` synopsis <a id="debugging.syn">[[debugging.syn]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
// all freestanding
|
| 5 |
+
namespace std {
|
| 6 |
+
// [debugging.utility], utility
|
| 7 |
+
void breakpoint() noexcept;
|
| 8 |
+
void breakpoint_if_debugging() noexcept;
|
| 9 |
+
bool is_debugger_present() noexcept;
|
| 10 |
+
}
|
| 11 |
+
```
|
| 12 |
+
|