Skip to content

Commit

Permalink
Merge pull request #2597 from wmtan/DoNotFailOnHarmlessWarnings
Browse files Browse the repository at this point in the history
ROOT6 -- Don't fail on harmless warnings
  • Loading branch information
ktf committed Feb 23, 2014
2 parents 4b3636d + c163aae commit 81f1326
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions FWCore/Services/src/InitRootHandlers.cc
Expand Up @@ -110,6 +110,8 @@ namespace {
(el_message.find("already in TClassTable") != std::string::npos) ||
(el_message.find("matrix not positive definite") != std::string::npos) ||
(el_message.find("not a TStreamerInfo object") != std::string::npos) ||
(el_message.find("nbins is <=0") != std::string::npos) ||
(el_message.find("Problems declaring payload") != std::string::npos) ||
(el_location.find("Fit") != std::string::npos) ||
(el_location.find("TDecompChol::Solve") != std::string::npos) ||
(el_location.find("THistPainter::PaintInit") != std::string::npos) ||
Expand Down

0 comments on commit 81f1326

Please sign in to comment.