tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
new_handler.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2019 Tobias Hienzsch
3
4#ifndef TETL_NEW_NEW_HANDLER_HPP
5#define TETL_NEW_NEW_HANDLER_HPP
6
7namespace etl {
8
9/// \brief etl::new_handler is the function pointer type (pointer to function
10/// that takes no arguments and returns void), which is used by the functions
11/// etl::set_new_handler and etl::get_new_handler
12using new_handler = void (*)();
13
14} // namespace etl
15
16#endif // TETL_NEW_NEW_HANDLER_HPP
Definition adjacent_find.hpp:9