Commit 6742ddcd authored by Dominik Charousset's avatar Dominik Charousset

Fix unordered_flat_map::swap

parent c2bbdc6c
...@@ -144,7 +144,7 @@ public: ...@@ -144,7 +144,7 @@ public:
} }
void swap(unordered_flat_map& other) { void swap(unordered_flat_map& other) {
xs_.swap(other); xs_.swap(other.xs_);
} }
// -- insertion ------------------------------------------------------------- // -- insertion -------------------------------------------------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment