Fix clang warnings in unordered tests.

[SVN r61505]
This commit is contained in:
Daniel James
2010-04-23 07:26:43 +00:00
parent 5bab4d4360
commit ea33b5d134
5 changed files with 39 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ namespace test
node* ptr_;
public:
list_iterator() : ptr_(0) {};
list_iterator() : ptr_(0) {}
explicit list_iterator(node* x) : ptr_(x) {}
T& operator*() const { return ptr_->value_; }