diff --git a/src/array.h b/src/array.h index 5b3e611d..e7bd5b10 100644 --- a/src/array.h +++ b/src/array.h @@ -225,6 +225,11 @@ public: return *this; } + inline void Append(T1 const &x) + { + *this += x; + } + void Remove(int pos) { memmove(m_data + pos, m_data + pos + 1, m_count - pos - 1);