Use int instead of sizeType

This commit is contained in:
Christophe Riccio 2011-05-07 16:18:10 +01:00
parent 752e8540c2
commit f5dedea3d3

View File

@ -258,12 +258,12 @@ namespace glm
} }
// bitfieldExtract // bitfieldExtract
template <typename genIUType, typename sizeType> template <typename genIUType>
GLM_FUNC_QUALIFIER genIUType bitfieldExtract GLM_FUNC_QUALIFIER genIUType bitfieldExtract
( (
genIUType const & Value, genIUType const & Value,
sizeType const & Offset, int const & Offset,
sizeType const & Bits int const & Bits
) )
{ {
/* /*
@ -280,7 +280,7 @@ namespace glm
return Result | ((Mask & Value) >> Offset); return Result | ((Mask & Value) >> Offset);
*/ */
sizeType GenSize = sizeof(genIUType) << sizeType(3); int GenSize = int(sizeof(genIUType)) << int(3);
assert(Offset + Bits <= GenSize); assert(Offset + Bits <= GenSize);