diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/array.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/array.h b/common/array.h index 869d79b68b..29a1ff8470 100644 --- a/common/array.h +++ b/common/array.h @@ -378,6 +378,11 @@ public: * Inserts element at the sorted position. */ void insert(const T &element) { + if (!this->_size) { + this->insert_aux(this->_storage, &element, &element + 1); + return; + } + T *where = (T *)bsearchMin(element, this->front(), this->_size, sizeof(T), _comparator); insert(where, element); } |