Codechange: Replace SmallVector::Length() with std::vector::size()
This commit is contained in:
@@ -175,7 +175,7 @@ struct MemoryDumper {
|
||||
*/
|
||||
size_t GetSize() const
|
||||
{
|
||||
return this->blocks.Length() * MEMORY_CHUNK_SIZE - (this->bufe - this->buf);
|
||||
return this->blocks.size() * MEMORY_CHUNK_SIZE - (this->bufe - this->buf);
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user