CNL  2.0.2 (development)
Compositional Numeric Library
assert_same.h
1 
2 // Copyright John McFarlane 2018.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file ../LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #if !defined(CNL_IMPL_TYPE_TRAITS_ASSERT_SAME_H)
8 #define CNL_IMPL_TYPE_TRAITS_ASSERT_SAME_H
9 
10 #include <type_traits>
11 
13 namespace cnl {
14  namespace _impl {
15  // cnl::_impl::assert_same - instead of being false_type like std::is_same,
16  // actually emits error which generally helps report the type of Actual
17 
18  template<typename Expected, typename Actual>
19  struct assert_same {
20  };
21 
22  template<typename T>
23  struct assert_same<T, T> : std::true_type {
24  };
25 
26  template<typename Expected, typename Actual>
27  inline constexpr auto assert_same_v = assert_same<Expected, Actual>::value;
28  }
29 }
30 
31 #endif // CNL_IMPL_TYPE_TRAITS_ASSERT_SAME_H
std::true_type
cnl
compositional numeric library
Definition: abort.h:15