From 125809d721bf1ef4aae35205a1cde2db8e4dd854 Mon Sep 17 00:00:00 2001 From: Pavel Krajcevski Date: Thu, 20 Mar 2014 18:33:11 -0400 Subject: [PATCH] Add return type to function --- ASTCEncoder/src/Utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;