From 9f191cd2dc15a94fc7be6e825696cb73508de0f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 17 Jun 2018 13:45:31 +0200 Subject: [PATCH] Renamed _blocks --- lib/library.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/library.h b/lib/library.h index fa03efc86..8f18d86f4 100644 --- a/lib/library.h +++ b/lib/library.h @@ -473,7 +473,7 @@ private: mOffset = o; } void addBlock(const char* blockName) { - _blocks.insert(blockName); + mBlocks.insert(blockName); } const std::string& start() const { return mStart; @@ -485,14 +485,14 @@ private: return mOffset; } bool isBlock(const std::string& blockName) const { - return _blocks.find(blockName) != _blocks.end(); + return mBlocks.find(blockName) != mBlocks.end(); } private: std::string mStart; std::string mEnd; int mOffset; - std::set _blocks; + std::set mBlocks; }; int allocid; std::set mFiles;