From: Axel Naumann Date: Thu, 14 Aug 2014 15:04:47 +0000 (+0200) Subject: Disable; it fails roottest/root/io/evolution/libint.log. X-Git-Tag: v6-02-00-rc1~402 X-Git-Url: https://root.cern.ch/gitweb?p=root.git;a=commitdiff_plain;h=154c9aa5fd265fa5b7e2aaeb427f7254ac2269ff Disable; it fails roottest/root/io/evolution/libint.log. --- diff --git a/interpreter/cling/lib/MetaProcessor/MetaSema.cpp b/interpreter/cling/lib/MetaProcessor/MetaSema.cpp index 6c4c9c0..4bd0f2f 100644 --- a/interpreter/cling/lib/MetaProcessor/MetaSema.cpp +++ b/interpreter/cling/lib/MetaProcessor/MetaSema.cpp @@ -106,6 +106,7 @@ namespace cling { StringRefPair pairFuncExt = pairPathFile.second.rsplit('.'); std::string expression = pairFuncExt.first.str() + "(" + args.str() + ")"; +#if 0 // see roottest/root/io/evolution/libint.log // Check if there is a function named after the file. const cling::Transaction* T = m_Interpreter.getLastTransaction(); assert(T); @@ -148,6 +149,7 @@ namespace cling { } } // FIXME: else no function to call! } +#endif if (m_Interpreter.echo(expression, result) != Interpreter::kSuccess) actionResult = AR_Failure;