summaryrefslogtreecommitdiff
path: root/absl
diff options
context:
space:
mode:
Diffstat (limited to 'absl')
-rw-r--r--absl/container/internal/raw_hash_set.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/container/internal/raw_hash_set.h b/absl/container/internal/raw_hash_set.h
index fb91fc3c..678ed7ea 100644
--- a/absl/container/internal/raw_hash_set.h
+++ b/absl/container/internal/raw_hash_set.h
@@ -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));
}
}