tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
breakpoint_if_debugging.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_DEBUGGING_BREAKPOINT_IF_DEBUGGING_HPP
4#define TETL_DEBUGGING_BREAKPOINT_IF_DEBUGGING_HPP
5
8
9namespace etl {
10
15inline auto breakpoint_if_debugging() noexcept -> void
16{
19 }
20}
21
22} // namespace etl
23
24#endif // TETL_DEBUGGING_BREAKPOINT_IF_DEBUGGING_HPP
auto is_debugger_present() noexcept -> bool
Attempts to determine if the program is being executed with debugger present.
Definition is_debugger_present.hpp:12
auto breakpoint() noexcept -> void
Unconditional breakpoint: attempts to temporarily halt the execution of the program and transfer cont...
Definition breakpoint.hpp:13
auto breakpoint_if_debugging() noexcept -> void
Conditional breakpoint: attempts to temporarily halt the execution of the program and transfer contro...
Definition breakpoint_if_debugging.hpp:15
Definition adjacent_find.hpp:8