From: Axel Naumann Date: Tue, 23 Sep 2014 10:04:36 +0000 (+0200) Subject: Disable fwd decl dependency analysis from TMetaUtil; pulls in the world. X-Git-Tag: v6-02-00-rc1~31 X-Git-Url: https://root.cern.ch/gitweb?p=root.git;a=commitdiff_plain;h=0a076c5d5b6a0a38f7cc3c576279c6004ef69d75 Disable fwd decl dependency analysis from TMetaUtil; pulls in the world. --- diff --git a/core/metautils/src/TMetaUtils.cxx b/core/metautils/src/TMetaUtils.cxx index 5afb77d..357413c 100644 --- a/core/metautils/src/TMetaUtils.cxx +++ b/core/metautils/src/TMetaUtils.cxx @@ -4789,7 +4789,8 @@ const std::string ROOT::TMetaUtils::AST2SourceTools::Decls2FwdDecls(const std::v for (auto decl : decls) { // again waiting for cling clang::Decl *ncDecl = const_cast(decl); - addDeclToTransaction(ncDecl, theTransaction, addedDecls); + //addDeclToTransaction(ncDecl, theTransaction, addedDecls); + theTransaction.append(ncDecl); } std::string newFwdDecl; llvm::raw_string_ostream llvmOstr(newFwdDecl);