diff options
Diffstat (limited to 'common/list.h')
-rw-r--r-- | common/list.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/list.h b/common/list.h index c4e7b47644..0372d217b7 100644 --- a/common/list.h +++ b/common/list.h @@ -209,6 +209,11 @@ public: ++i; } + void pop_front() { + iterator i = begin(); + i = erase(i); + } + List<t_T> &operator=(const List<t_T> &list) { if (this != &list) { |