Support Class Library
A set of tools providing classes and utility
constexpr_assert.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <type_traits>
4 
5 namespace scl{
6  namespace tools{
7  namespace meta{
8  template <bool b>
9  inline constexpr bool constexpr_assert(){
10  static_assert(b, "");
11  return true;
12  }
13  }
14  }
15 }
constexpr bool constexpr_assert()
Global namespace of the SCL.
Definition: alias.hpp:3