Fix 1e0bea5b
: Incorrect extern declarations
This commit is contained in:
@@ -230,10 +230,10 @@ static inline uint8 FindFirstBit(T value)
|
|||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
if (sizeof(T) <= sizeof(uint32)) {
|
if (sizeof(T) <= sizeof(uint32)) {
|
||||||
extern uint8 FindFirstBit32(x);
|
extern uint8 FindFirstBit32(uint32 x);
|
||||||
return FindFirstBit32(value);
|
return FindFirstBit32(value);
|
||||||
} else {
|
} else {
|
||||||
extern uint8 FindFirstBit64(x);
|
extern uint8 FindFirstBit64(uint64 x);
|
||||||
return FindFirstBit64(value);
|
return FindFirstBit64(value);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user