diff options
Diffstat (limited to 'libitm/containers.h')
-rw-r--r-- | libitm/containers.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libitm/containers.h b/libitm/containers.h index 394b6f2508e..36905659da2 100644 --- a/libitm/containers.h +++ b/libitm/containers.h @@ -92,6 +92,7 @@ class vector size_t size() const { return m_size; } size_t capacity() const { return this->capacity; } + void set_size (size_t size) { m_size = size; } void clear() { m_size = 0; } iterator push() { |