Usermode/libc++ - system_error and vector implementation
[tpg/acess2.git] / Usermode / Libraries / libc++.so_src / include_exp / list
index 060e4e3..ff82614 100644 (file)
@@ -203,9 +203,11 @@ public:
        }
        list_iterator& operator ++ () {
                cur = cur->next;
+               return *this;
        }
        list_iterator& operator -- () {
                cur = cur->prev;
+               return *this;
        }
 
 private:

UCC git Repository :: git.ucc.asn.au