Skip to content
Snippets Groups Projects
Commit c630dc8d authored by Axel Naumann's avatar Axel Naumann
Browse files

Wrong operator precedence: ? lower than + (thanks, clang).

git-svn-id: http://root.cern.ch/svn/root/trunk@41581 27541ba8-7e3a-0410-8455-c3a389f83636
parent 5808de72
No related branches found
No related tags found
No related merge requests found
......@@ -193,7 +193,7 @@ namespace ROOT { namespace Cintex {
<< std::endl
<< std::setw(24) << std::left << "Cintex: declareField>"
<< " Type:"
<< std::left << std::setw(24) << ("[" + dm.Properties().HasProperty("iotype") ? dm.Properties().PropertyAsString("iotype") : dmType.Name(SCOPED) + "]")
<< std::left << std::setw(24) << ("[" + (dm.Properties().HasProperty("iotype") ? dm.Properties().PropertyAsString("iotype") : dmType.Name(SCOPED)) + "]")
<< " DeclBy:" << fClass.Name(SCOPED)
<< std::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