diff options
author | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2015-10-26 18:00:12 +0200 |
---|---|---|
committer | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2015-10-26 18:00:12 +0200 |
commit | b0b8d34b15350f44d76f253e6b69f1c4e8ad7f33 (patch) | |
tree | c44c79822113376625b32060585d31227417d104 /indra/llcommon | |
parent | 35626b1511e90a271f757d3373a7d64ef66c2eb7 (diff) | |
parent | 17ff449ae6b2759f212daa4fd3de0a7ea2664866 (diff) |
Merged viewer-xcode-7
Diffstat (limited to 'indra/llcommon')
-rwxr-xr-x | indra/llcommon/llprocess.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/llcommon/llprocess.cpp b/indra/llcommon/llprocess.cpp index 715df36f39..e0aa30cc1a 100755 --- a/indra/llcommon/llprocess.cpp +++ b/indra/llcommon/llprocess.cpp @@ -738,8 +738,11 @@ LLProcess::LLProcess(const LLSDOrParams& params): { mPipes.replace(i, new ReadPipeImpl(desc, pipe, FILESLOT(i))); } - LL_DEBUGS("LLProcess") << "Instantiating " << typeid(mPipes[i]).name() - << "('" << desc << "')" << LL_ENDL; + // Removed temporaily for Xcode 7 build tests: error was: + // "error: expression with side effects will be evaluated despite + // being used as an operand to 'typeid' [-Werror,-Wpotentially-evaluated-expression]"" + //LL_DEBUGS("LLProcess") << "Instantiating " << typeid(mPipes[i]).name() + // << "('" << desc << "')" << LL_ENDL; } } |