- change name of the types "True" and "False" to "TrueType" and "FalseType" to clearify, that these are types
git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@1137 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
@@ -72,10 +72,10 @@ template <bool b> struct Bool2Type { enum { my_bool = b }; };
|
||||
template <int i> struct Int2Type { enum { my_int = i }; };
|
||||
|
||||
/// Handy typedef for Bool2Type<true> classes
|
||||
typedef Bool2Type<true> True;
|
||||
typedef Bool2Type<true> TrueType;
|
||||
|
||||
/// Handy typedef for Bool2Type<false> classes
|
||||
typedef Bool2Type<false> False;
|
||||
typedef Bool2Type<false> FalseType;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
/// compile time assertions
|
||||
|
||||
Reference in New Issue
Block a user