Add missing return for operator=.

[SVN r51504]
This commit is contained in:
Daniel James
2009-03-01 14:15:09 +00:00
parent d442f20bf8
commit 40a89ac649

View File

@ -144,6 +144,7 @@ namespace test
list& operator=(list const& other) {
clear();
insert(other.begin(), other.end());
return *this;
}
iterator begin() { return iterator(data_.first_); }