diff options
Diffstat (limited to 'include/coolarray.hpp')
-rw-r--r-- | include/coolarray.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/coolarray.hpp b/include/coolarray.hpp index be221b8..0df4f18 100644 --- a/include/coolarray.hpp +++ b/include/coolarray.hpp @@ -118,7 +118,7 @@ public: void push_back(const T& x) { if (_size >= _capacity) - reserve(_capacity + 5); + reserve(_capacity + 10); buffer[_size++] = x; } |