mimic++ v9.2.1
Loading...
Searching...
No Matches
AlwaysFalse.hpp
Go to the documentation of this file.
1// Copyright Dominic (DNKpp) Koepke 2024 - 2025.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at
4// https://www.boost.org/LICENSE_1_0.txt)
5
6#ifndef MIMICPP_UTILITIES_ALWAYS_FALSE_HPP
7#define MIMICPP_UTILITIES_ALWAYS_FALSE_HPP
8
9#pragma once
10
12
13#ifndef MIMICPP_DETAIL_IS_MODULE
14 #include <type_traits>
15#endif
16
18{
19 template <typename...>
21 : public std::bool_constant<false>
22 {
23 };
24}
25
26#endif
#define MIMICPP_DETAIL_MODULE_EXPORT
Definition Config.hpp:19
Definition Fwd.hpp:445
Definition AlwaysFalse.hpp:22