Skip to content

Commit

Permalink
Fix build warning in CommandLineParser
Browse files Browse the repository at this point in the history
Added parenthesis around logic expression to avoid g++ warning.
  • Loading branch information
Dr15Jones committed Nov 30, 2016
1 parent 03fb439 commit 0b0b5e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PhysicsTools/FWLite/src/CommandLineParser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0b0b5e5

Please sign in to comment.