35 #ifndef _BLAZE_UTIL_MPL_LESS_H_
36 #define _BLAZE_UTIL_MPL_LESS_H_
74 #if (defined _MSC_VER)
75 struct Less :
public Bool< ( T2::value > T1::value ) >
77 struct
Less :
public Bool< ( T1::value < T2::value ) >
Compile time type comparison.The Less class template compares the two given types using the less-than...
Definition: Less.h:77
Compile time integral constant wrapper for bool.The Bool class template represents an integral wrappe...
Definition: Bool.h:63
Header file for the Bool class template.