mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-12 01:10:49 +00:00
Fix warning using __builtin_popcount (#1218)
This commit is contained in:
parent
e392f832f4
commit
7edaeab839
@ -74,7 +74,7 @@
|
|||||||
return NO;
|
return NO;
|
||||||
}
|
}
|
||||||
|
|
||||||
NSAssert(__builtin_popcount(requested) == 1, @"Cannot activate multiple features at once with this method.");
|
NSAssert(__builtin_popcountl(requested) == 1, @"Cannot activate multiple features at once with this method.");
|
||||||
|
|
||||||
// We need to call out, whether it's enabled or not.
|
// We need to call out, whether it's enabled or not.
|
||||||
// A/B testing requires even "control" users to be activated.
|
// A/B testing requires even "control" users to be activated.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user