Skip to content
Snippets Groups Projects
Commit 1c94732b authored by callum_linden's avatar callum_linden
Browse files

comment out LL_DEBUGS that fails because 'expression evalauted desipite being...

comment out LL_DEBUGS that fails because 'expression evalauted desipite being used as an operand to typeid'
parent 9ad8b866
No related branches found
No related tags found
No related merge requests found
...@@ -738,8 +738,11 @@ LLProcess::LLProcess(const LLSDOrParams& params): ...@@ -738,8 +738,11 @@ LLProcess::LLProcess(const LLSDOrParams& params):
{ {
mPipes.replace(i, new ReadPipeImpl(desc, pipe, FILESLOT(i))); mPipes.replace(i, new ReadPipeImpl(desc, pipe, FILESLOT(i)));
} }
LL_DEBUGS("LLProcess") << "Instantiating " << typeid(mPipes[i]).name() // Removed temporaily for Xcode 7 build tests: error was:
<< "('" << desc << "')" << LL_ENDL; // "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;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment