diff --git a/test/unordered/transparent_tests.cpp b/test/unordered/transparent_tests.cpp index 13779bd7..58367791 100644 --- a/test/unordered/transparent_tests.cpp +++ b/test/unordered/transparent_tests.cpp @@ -20,13 +20,6 @@ struct key key(int x) : x_(x) { ++count_; } key(key const& k) : x_(k.x_) { ++count_; } - - key& operator=(key const& k) - { - x_ = k.x_; - ++count_; - return *this; - } }; int key::count_;