Cleaned up indentation to be readable again

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@586 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2012-05-22 09:15:15 +00:00
parent 399f63279d
commit b1dfc57365
2 changed files with 153 additions and 247 deletions

View File

@@ -62,14 +62,14 @@ namespace OMFormat {
Chunk::Integer_Size needed_bits( size_t s )
{
if (s <= 0x000100) return Chunk::Integer_8;
if (s <= 0x000100) return Chunk::Integer_8;
if (s <= 0x010000) return Chunk::Integer_16;
#if 0
// !Not tested yet! This most probably won't work!
// NEED a 64bit system!
if ( (sizeof( size_t ) == 8) && (s >= 0x100000000) )
return Chunk::Integer_64;
return Chunk::Integer_64;
#endif
return Chunk::Integer_32;