Commit 334aca32 by Evan Brown Committed by Copybara-Service

Update an old comment that refers to obsolete types.

PiperOrigin-RevId: 557187112
Change-Id: I7c3e4be0ab5a7451173da7a0ded53a3d227bb093
parent 79f3dec0
......@@ -1906,8 +1906,8 @@ class raw_hash_set {
std::swap(common(), that.common());
} else {
reserve(that.size());
// Note: this will copy elements of dense_set and unordered_set instead of
// moving them. This can be fixed if it ever becomes an issue.
// Note: this will copy keys instead of moving them. This can be fixed if
// it ever becomes an issue.
for (auto& elem : that) insert(std::move(elem));
}
}
......
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