summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorpavelkproductengine <pavelkproductengine@lindenlab.com>2015-10-13 20:20:09 +0300
committerpavelkproductengine <pavelkproductengine@lindenlab.com>2015-10-13 20:20:09 +0300
commit3732e0b4d2d0c311c6341bf479bbc4fa7387df0e (patch)
tree1ca88fe8d140856687d9804f35fa75348449d9f0 /indra/llcommon
parent4312629e7c5749b86add9d42e6e550602f34dbf5 (diff)
parent4ec4bf3711757c71ea9007ed939efb17312fe0b6 (diff)
merge changes for MAINT-4734
Diffstat (limited to 'indra/llcommon')
-rwxr-xr-xindra/llcommon/llprocess.cpp7
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;
}
}