Renamed _blocks
This commit is contained in:
parent
fea58e5e54
commit
9f191cd2dc
|
@ -473,7 +473,7 @@ private:
|
||||||
mOffset = o;
|
mOffset = o;
|
||||||
}
|
}
|
||||||
void addBlock(const char* blockName) {
|
void addBlock(const char* blockName) {
|
||||||
_blocks.insert(blockName);
|
mBlocks.insert(blockName);
|
||||||
}
|
}
|
||||||
const std::string& start() const {
|
const std::string& start() const {
|
||||||
return mStart;
|
return mStart;
|
||||||
|
@ -485,14 +485,14 @@ private:
|
||||||
return mOffset;
|
return mOffset;
|
||||||
}
|
}
|
||||||
bool isBlock(const std::string& blockName) const {
|
bool isBlock(const std::string& blockName) const {
|
||||||
return _blocks.find(blockName) != _blocks.end();
|
return mBlocks.find(blockName) != mBlocks.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::string mStart;
|
std::string mStart;
|
||||||
std::string mEnd;
|
std::string mEnd;
|
||||||
int mOffset;
|
int mOffset;
|
||||||
std::set<std::string> _blocks;
|
std::set<std::string> mBlocks;
|
||||||
};
|
};
|
||||||
int allocid;
|
int allocid;
|
||||||
std::set<std::string> mFiles;
|
std::set<std::string> mFiles;
|
||||||
|
|
Loading…
Reference in New Issue