Standard library header <debugging> (C++26) - cppreference.com
Namespaces
Variants

Standard library header <debugging> (C++26)

From cppreference.com
 
 
Standard library headers
 

This header is part of the diagnostics library.

Synopsis

// all freestanding
namespace std {
  // debugging utility
  void breakpoint() noexcept;
  void breakpoint_if_debugging() noexcept;
  bool is_debugger_present() noexcept;
}