You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While using it in my Xcode 10.1 project, it shows the following warning:
Obfuscator.m:173:25: Possible misuse of comma operator here
This is the code:
// If at end of key data, reset count and// set key pointer back to start of key valueif (++keyIndex == [self.salt length])
keyIndex = 0, keyPtr = keyData;
I've solved it by splitting the statements over multiple lines within the IF condition:
// If at end of key data, reset count and
// set key pointer back to start of key value
if (++keyIndex == [self.salt length])
{
keyIndex = 0;
keyPtr = keyData;
}
The text was updated successfully, but these errors were encountered:
Thank you for this great class.
While using it in my Xcode 10.1 project, it shows the following warning:
This is the code:
I've solved it by splitting the statements over multiple lines within the IF condition:
The text was updated successfully, but these errors were encountered: