Fix warning using __builtin_popcount (#1218)

This commit is contained in:
Michael Schneider 2018-11-07 07:01:19 -08:00 committed by Adlai Holler
parent e392f832f4
commit 7edaeab839

View File

@ -74,7 +74,7 @@
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.
// A/B testing requires even "control" users to be activated.