- 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:
Matthias Möller
2014-08-11 09:47:41 +00:00
parent 0bc61d5839
commit d633dfc737
3 changed files with 8 additions and 8 deletions

View File

@@ -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