tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
breakpoint.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2024 Tobias Hienzsch
3
4#ifndef TETL_DEBUGGING_BREAKPOINT_HPP
5#define TETL_DEBUGGING_BREAKPOINT_HPP
6
7#include <etl/_config/all.hpp>
8
9namespace etl {
10
11/// Unconditional breakpoint: attempts to temporarily halt the execution of
12/// the program and transfer control to the debugger.
13/// \ingroup debugging
14inline auto breakpoint() noexcept -> void
15{
17}
18
19} // namespace etl
20
21#endif // TETL_DEBUGGING_BREAKPOINT_HPP
auto TETL_DEBUG_TRAP() -> void
Definition debug_trap.hpp:85
auto breakpoint() noexcept -> void
Unconditional breakpoint: attempts to temporarily halt the execution of the program and transfer cont...
Definition breakpoint.hpp:14
Definition adjacent_find.hpp:9