diff options
-rw-r--r-- | common/list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/list.h b/common/list.h index 2fe07a5ccc..fb093804ce 100644 --- a/common/list.h +++ b/common/list.h @@ -163,7 +163,7 @@ public: newNode->_next->_prev = newNode; } - template <typename iterator2> + template <typename iterator2> void insert(iterator pos, iterator2 first, iterator2 last) { for (; first != last; ++first) insert(pos, *first); |