From 0b0b5e58a05f94e0704ca7799aeb3acaf43b22da Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Wed, 30 Nov 2016 15:39:45 +0100 Subject: [PATCH] Fix build warning in CommandLineParser Added parenthesis around logic expression to avoid g++ warning. --- PhysicsTools/FWLite/src/CommandLineParser.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PhysicsTools/FWLite/src/CommandLineParser.cc b/PhysicsTools/FWLite/src/CommandLineParser.cc index 4dabf9f3aa85a..913fd2db92acf 100644 --- a/PhysicsTools/FWLite/src/CommandLineParser.cc +++ b/PhysicsTools/FWLite/src/CommandLineParser.cc @@ -752,7 +752,7 @@ CommandLineParser::_getSectionFiles (const SVec &inputList, SVec &outputList, void CommandLineParser::_finishDefaultOptions (std::string tag) { - if (! m_optionsType & kEventContOpt) + if (! (m_optionsType & kEventContOpt) ) { // nothing to see here, folks return;