AlwaysFalse.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_UTIL_TYPETRAITS_ALWAYSFALSE_H_
36 #define _BLAZE_UTIL_TYPETRAITS_ALWAYSFALSE_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
43 #include <blaze/util/FalseType.h>
44 
45 
46 namespace blaze {
47 
48 //=================================================================================================
49 //
50 // CLASS DEFINITION
51 //
52 //=================================================================================================
53 
54 //*************************************************************************************************
62 template< typename T >
64  : public FalseType
65 {};
66 //*************************************************************************************************
67 
68 
69 //*************************************************************************************************
82 template< typename T >
83 constexpr bool AlwaysFalse_v = false;
84 //*************************************************************************************************
85 
86 } // namespace blaze
87 
88 #endif
constexpr bool AlwaysFalse_v
Auxiliary variable template for the AlwaysFalse type trait.The AlwaysFalse_v variable template provid...
Definition: AlwaysFalse.h:83
Header file for the FalseType type/value trait base class.
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:71
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Type dependent compile time false.This type trait represents a type dependent compile time false...
Definition: AlwaysFalse.h:63