mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2024-11-23 19:05:39 +01:00
Add return type to function
This commit is contained in:
parent
65b874693e
commit
125809d721
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user