This header is part of thediagnostics library.
Functions | |
(C++26) | pauses the running program when called (function)[edit] |
(C++26) | callsstd::breakpoint ifstd::is_debugger_present returnstrue (function)[edit] |
(C++26) | checks whether a program is running under the control of a debugger (function)[edit] |
// all freestandingnamespace std{// debugging utilityvoid breakpoint()noexcept;void breakpoint_if_debugging()noexcept;bool is_debugger_present()noexcept;}