From 35c8f9e42698fba55090bd18ce8c7548b43bede6 Mon Sep 17 00:00:00 2001 From: Axel Naumann <Axel.Naumann@cern.ch> Date: Fri, 5 Jun 2015 22:26:34 +0200 Subject: [PATCH] Not a problem if we have no definition of TSelector. --- core/utils/src/rootcling.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/utils/src/rootcling.cxx b/core/utils/src/rootcling.cxx index a0d65a433c0..2391a7baa52 100644 --- a/core/utils/src/rootcling.cxx +++ b/core/utils/src/rootcling.cxx @@ -636,7 +636,7 @@ bool InheritsFromTSelector(const clang::RecordDecl *cl, const cling::Interpreter &interp) { static const clang::CXXRecordDecl *TObject_decl - = ROOT::TMetaUtils::ScopeSearch("TSelector", interp, true /*diag*/, 0); + = ROOT::TMetaUtils::ScopeSearch("TSelector", interp, false /*diag*/, 0); return ROOT::TMetaUtils::IsBase(llvm::dyn_cast<clang::CXXRecordDecl>(cl), TObject_decl, nullptr, interp); } -- GitLab