tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
is_error_condition_enum.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_SYSTEM_ERROR_IS_ERROR_CONDITION_ENUM_HPP
5#define TETL_SYSTEM_ERROR_IS_ERROR_CONDITION_ENUM_HPP
6
7#include <etl/_type_traits/bool_constant.hpp>
8
9namespace etl {
10
11template <typename T>
12struct is_error_condition_enum : false_type { };
13
14template <typename T>
16
17} // namespace etl
18
19#endif // TETL_SYSTEM_ERROR_IS_ERROR_CONDITION_ENUM_HPP
Definition adjacent_find.hpp:9
constexpr auto is_error_condition_enum_v
Definition is_error_condition_enum.hpp:15
Definition is_error_condition_enum.hpp:12