Update to build on Xcode 6.0: clang fix for bracketed logical operations

master
callum_linden 2014-10-17 22:15:36 -07:00
parent ff5c13493e
commit 955ec6faff
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ namespace LLTextValidate
S32 len = str.length();
while(len--)
{
if (str[len] < 0x20 && str[len] != 0xA || str[len] > 0x7f)
if ((str[len] < 0x20 && str[len] != 0xA) || str[len] > 0x7f)
{
rv = FALSE;
break;