summaryrefslogtreecommitdiff
path: root/src/core/smallstack_type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/smallstack_type.hpp')
-rw-r--r--src/core/smallstack_type.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/smallstack_type.hpp b/src/core/smallstack_type.hpp
index 76d97f961..5a9d329a9 100644
--- a/src/core/smallstack_type.hpp
+++ b/src/core/smallstack_type.hpp
@@ -74,7 +74,7 @@ private:
}
if (index >= this->data.size() && index < Tmax_size) {
- this->data.Resize(index + 1);
+ this->data.resize(index + 1);
}
return index;
}