diff options
| author | callum_linden <none@none> | 2014-10-17 22:15:36 -0700 | 
|---|---|---|
| committer | callum_linden <none@none> | 2014-10-17 22:15:36 -0700 | 
| commit | 955ec6faff27d566cb0d07cecd159756de5b355e (patch) | |
| tree | 4ee58e63b12170c29a19c8915962b4c55ee4a442 | |
| parent | ff5c13493e63509443a7a1fca189d3ddf1d4cb34 (diff) | |
Update to build on Xcode 6.0: clang fix for bracketed logical operations
| -rwxr-xr-x | indra/llui/lltextvalidate.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lltextvalidate.cpp b/indra/llui/lltextvalidate.cpp index 234e600ccd..324ceb7fba 100755 --- a/indra/llui/lltextvalidate.cpp +++ b/indra/llui/lltextvalidate.cpp @@ -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;  | 
