Standardbibliothek-Header <debugging> (C++26)
Von cppreference.com
Dieser Header ist Teil der Diagnostik-Bibliothek.
Funktionen | |
| (C++26) |
pausiert das laufende Programm, wenn es aufgerufen wird (Funktion) |
| (C++26) |
ruft std::breakpoint auf, wenn std::is_debugger_present true zurückgibt (Funktion) |
| (C++26) |
prüft, ob ein Programm unter der Kontrolle eines Debuggers ausgeführt wird (Funktion) |
[bearbeiten] Synopsis
// all freestanding namespace std { // debugging utility void breakpoint() noexcept; void breakpoint_if_debugging() noexcept; bool is_debugger_present() noexcept; }