tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
align_val_t.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_ALIGN_VAL_T_HPP
5#define TETL_NEW_ALIGN_VAL_T_HPP
6
7#include <etl/_cstddef/size_t.hpp>
8
9namespace etl {
10
11/// \brief Both new-expression and delete-expression, when used with objects
12/// whose alignment requirement is greater than the default, pass that alignment
13/// requirement as an argument of type align_val_t to the selected
14/// allocation/deallocation function.
15enum struct align_val_t : etl::size_t {
16};
17
18} // namespace etl
19
20#endif // TETL_NEW_ALIGN_VAL_T_HPP
Definition adjacent_find.hpp:9
align_val_t
Both new-expression and delete-expression, when used with objects whose alignment requirement is grea...
Definition align_val_t.hpp:15