Index: uspace/lib/cpp/include/impl/unordered_map.hpp
===================================================================
--- uspace/lib/cpp/include/impl/unordered_map.hpp	(revision b9076dbf0ef10a4d907798deb34725a4afd98419)
+++ uspace/lib/cpp/include/impl/unordered_map.hpp	(revision 6562af2d2acdb7c150ebc5e9c883a7f3586db32a)
@@ -165,5 +165,7 @@
             unordered_map& operator=(const unordered_map& other)
             {
-                // TODO: implement
+                table_ = other.table_;
+                allocator_ = other.allocator_;
+
                 return *this;
             }
@@ -174,5 +176,7 @@
                          is_nothrow_move_assignable<key_equal>::value)
             {
-                // TODO: implement
+                table_ = move(other.table_);
+                allocator_ = move(other.allocator_);
+
                 return *this;
             }
