tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
ignore_unused.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_UTILITY_IGNORE_UNUSED_HPP
4#define TETL_UTILITY_IGNORE_UNUSED_HPP
5
6namespace etl {
7
16template <typename... Types>
17constexpr auto ignore_unused(Types&&... /*unused*/) -> void
18{
19}
20
21} // namespace etl
22
23#endif // TETL_UTILITY_IGNORE_UNUSED_HPP
Definition adjacent_find.hpp:8
constexpr auto ignore_unused(Types &&...) -> void
Explicitly ignore arguments or variables.
Definition ignore_unused.hpp:17