diff options
Diffstat (limited to 'cpp/include/Ice/Buffer.h')
-rw-r--r-- | cpp/include/Ice/Buffer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/include/Ice/Buffer.h b/cpp/include/Ice/Buffer.h index 56966089c06..95f599bb467 100644 --- a/cpp/include/Ice/Buffer.h +++ b/cpp/include/Ice/Buffer.h @@ -81,7 +81,7 @@ public: } void swap(Container&); - + void clear(); void resize(size_type n) // Inlined for performance reasons. @@ -98,7 +98,7 @@ public: } _size = n; } - + void reset() { assert(!_buf || _capacity > 0); @@ -141,7 +141,7 @@ public: assert(n < _size); return _buf[n]; } - + private: Container(const Container&); |