標準ライブラリヘッダ <debugging> (C++26)
From cppreference.com
このヘッダは診断ライブラリの一部です。
関数 | |
| (C++26) |
呼び出された際に実行中のプログラムを一時停止させる (関数) |
| (C++26) |
std::is_debugger_present が true を返す場合に std::breakpoint を呼び出す (関数) |
| (C++26) |
プログラムがデバッガーの制御下で実行されているかを確認する (関数) |
[編集] 概要
// all freestanding namespace std { // debugging utility void breakpoint() noexcept; void breakpoint_if_debugging() noexcept; bool is_debugger_present() noexcept; }