Codechange: Replace SmallVector::Length() with std::vector::size()
This commit is contained in:
@@ -496,7 +496,7 @@ public:
|
||||
* Get the current size of the component.
|
||||
* @return Size.
|
||||
*/
|
||||
inline uint Size() const { return this->nodes.Length(); }
|
||||
inline uint Size() const { return this->nodes.size(); }
|
||||
|
||||
/**
|
||||
* Get date of last compression.
|
||||
|
Reference in New Issue
Block a user