diff --git a/ASTCEncoder/src/Utils.h b/ASTCEncoder/src/Utils.h index df4143d..ef2112d 100644 --- a/ASTCEncoder/src/Utils.h +++ b/ASTCEncoder/src/Utils.h @@ -106,7 +106,7 @@ namespace ASTCC { }; // Count the number of bits set in a number. - static inline Popcnt(uint32 n) { + static inline uint32 Popcnt(uint32 n) { uint32 c; for(c = 0; n; c++) { n &= n-1;