mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-22 10:44:05 +00:00
Add return type to function
This commit is contained in:
parent
65b874693e
commit
125809d721
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue