tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
allocator_arg_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_MEMORY_ALLOCATOR_ARG_T_HPP
5#define TETL_MEMORY_ALLOCATOR_ARG_T_HPP
6
7namespace etl {
8
9/// \brief allocator_arg_t is an empty class type used to disambiguate the
10/// overloads of constructors and member functions of allocator-aware objects.
12 explicit allocator_arg_t() = default;
13};
14
15/// \brief allocator_arg is a constant of type allocator_arg_t used to
16/// disambiguate, at call site, the overloads of the constructors and member
17/// functions of allocator-aware objects.
19
20} // namespace etl
21
22#endif // TETL_MEMORY_ALLOCATOR_ARG_T_HPP
Definition adjacent_find.hpp:9
constexpr allocator_arg_t allocator_arg
allocator_arg is a constant of type allocator_arg_t used to disambiguate, at call site,...
Definition allocator_arg_t.hpp:18
allocator_arg_t is an empty class type used to disambiguate the overloads of constructors and member ...
Definition allocator_arg_t.hpp:11
allocator_arg_t()=default