From f42a0106c8b294309935d3e8b5ff485a88308a74 Mon Sep 17 00:00:00 2001 From: Axel Naumann <Axel.Naumann@cern.ch> Date: Wed, 26 Jun 2013 12:49:52 +0200 Subject: [PATCH] Work around spurrious C++11 / clang warnings on MacOS --- core/meta/src/TClass.cxx | 10 +++++----- html/inc/THtml.h | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/core/meta/src/TClass.cxx b/core/meta/src/TClass.cxx index fa7d04444bb..c7e68730009 100644 --- a/core/meta/src/TClass.cxx +++ b/core/meta/src/TClass.cxx @@ -3705,7 +3705,7 @@ TVirtualStreamerInfo* TClass::GetStreamerInfoAbstractEmulated(Int_t version /* = } //______________________________________________________________________________ -void TClass::IgnoreTObjectStreamer(Bool_t ignore) +void TClass::IgnoreTObjectStreamer(Bool_t doIgnore) { // When the class kIgnoreTObjectStreamer bit is set, the automatically // generated Streamer will not call TObject::Streamer. @@ -3721,8 +3721,8 @@ void TClass::IgnoreTObjectStreamer(Bool_t ignore) // To be effective for object streamed member-wise or split in a TTree, // this function must be called for the most derived class (i.e. BigTrack). - if ( ignore && TestBit(kIgnoreTObjectStreamer)) return; - if (!ignore && !TestBit(kIgnoreTObjectStreamer)) return; + if ( doIgnore && TestBit(kIgnoreTObjectStreamer)) return; + if (!doIgnore && !TestBit(kIgnoreTObjectStreamer)) return; TVirtualStreamerInfo *sinfo = GetCurrentStreamerInfo(); if (sinfo) { if (sinfo->IsCompiled()) { @@ -3739,8 +3739,8 @@ void TClass::IgnoreTObjectStreamer(Bool_t ignore) return; } } - if (ignore) SetBit (kIgnoreTObjectStreamer); - else ResetBit(kIgnoreTObjectStreamer); + if (doIgnore) SetBit (kIgnoreTObjectStreamer); + else ResetBit(kIgnoreTObjectStreamer); } //______________________________________________________________________________ diff --git a/html/inc/THtml.h b/html/inc/THtml.h index 1597ec26bd9..01ec07cdf63 100644 --- a/html/inc/THtml.h +++ b/html/inc/THtml.h @@ -172,8 +172,8 @@ public: // Utility class representing a directory class TFileSysDB: public TFileSysDir { public: - TFileSysDB(const char* path, const char* ignore, Int_t maxdirlevel): - TFileSysDir(path, 0), fEntries(1009, 5), fIgnorePath(ignore), fMaxLevel(maxdirlevel) + TFileSysDB(const char* path, const char* ignorePath, Int_t maxdirlevel): + TFileSysDir(path, 0), fEntries(1009, 5), fIgnorePath(ignorePath), fMaxLevel(maxdirlevel) { Fill(); } TExMap& GetMapIno() { return fMapIno; } -- GitLab