From: Axel Naumann Date: Tue, 16 Sep 2014 12:24:40 +0000 (+0200) Subject: Fix stray "<<" and make it do what was intended... X-Git-Tag: v6-02-00-rc1~95 X-Git-Url: https://root.cern.ch/gitweb?p=root.git;a=commitdiff_plain;h=6e27010f897b3abffa93824e3c26d403cec2c4a0 Fix stray "<<" and make it do what was intended... --- diff --git a/core/metautils/src/TMetaUtils.cxx b/core/metautils/src/TMetaUtils.cxx index 3ffab16..e5d615a 100644 --- a/core/metautils/src/TMetaUtils.cxx +++ b/core/metautils/src/TMetaUtils.cxx @@ -1617,7 +1617,7 @@ void ROOT::TMetaUtils::WriteClassInit(std::ostream& finalString, //-------------------------------------------------------------------------- if( rulesIt2 != ROOT::gReadRawRules.end() ) { int i = 0; - finalString << "\n << "; // Schema evolution read raw functions << "\n"; + finalString << "\n // Schema evolution read raw functions\n"; std::list::iterator rIt = rulesIt2->second.begin(); while( rIt != rulesIt2->second.end() ) {