Skip to content

Commit

Permalink
Refs #4383. Fix warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert-Whitley committed Feb 29, 2012
1 parent eb72525 commit 76a5f90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ void MuonFitPropertyBrowser::populateFunctionNames()
bool muon = false;
for (size_t j=0; j<categories.size(); ++j)
{
if (categories[j] == "Muon" || "General")
if ((categories[j] == "Muon") || (categories[j] == "General") )
muon = true;
}
if (muon == true)
Expand Down

0 comments on commit 76a5f90

Please sign in to comment.