diff --git a/absl/container/flat_hash_map.h b/absl/container/flat_hash_map.h index ebd9ed67566..1e9c69198da 100644 --- a/absl/container/flat_hash_map.h +++ b/absl/container/flat_hash_map.h @@ -426,8 +426,7 @@ class ABSL_INTERNAL_ATTRIBUTE_OWNER flat_hash_map // flat_hash_map::swap(flat_hash_map& other) // // Exchanges the contents of this `flat_hash_map` with those of the `other` - // flat hash map, avoiding invocation of any move, copy, or swap operations on - // individual elements. + // flat hash map. // // All iterators and references on the `flat_hash_map` remain valid, excepting // for the past-the-end iterator, which is invalidated. diff --git a/absl/container/flat_hash_set.h b/absl/container/flat_hash_set.h index a3e36e05e3b..80c6ea463aa 100644 --- a/absl/container/flat_hash_set.h +++ b/absl/container/flat_hash_set.h @@ -360,8 +360,7 @@ class ABSL_INTERNAL_ATTRIBUTE_OWNER flat_hash_set // flat_hash_set::swap(flat_hash_set& other) // // Exchanges the contents of this `flat_hash_set` with those of the `other` - // flat hash set, avoiding invocation of any move, copy, or swap operations on - // individual elements. + // flat hash set. // // All iterators and references on the `flat_hash_set` remain valid, excepting // for the past-the-end iterator, which is invalidated. diff --git a/absl/container/node_hash_map.h b/absl/container/node_hash_map.h index 5615e4966b8..b3f00bf97d2 100644 --- a/absl/container/node_hash_map.h +++ b/absl/container/node_hash_map.h @@ -417,8 +417,7 @@ class ABSL_INTERNAL_ATTRIBUTE_OWNER node_hash_map // node_hash_map::swap(node_hash_map& other) // // Exchanges the contents of this `node_hash_map` with those of the `other` - // node hash map, avoiding invocation of any move, copy, or swap operations on - // individual elements. + // node hash map. // // All iterators and references on the `node_hash_map` remain valid, excepting // for the past-the-end iterator, which is invalidated. diff --git a/absl/container/node_hash_set.h b/absl/container/node_hash_set.h index 53435ae6301..e400813c13e 100644 --- a/absl/container/node_hash_set.h +++ b/absl/container/node_hash_set.h @@ -349,8 +349,7 @@ class ABSL_INTERNAL_ATTRIBUTE_OWNER node_hash_set // node_hash_set::swap(node_hash_set& other) // // Exchanges the contents of this `node_hash_set` with those of the `other` - // node hash set, avoiding invocation of any move, copy, or swap operations on - // individual elements. + // node hash set. // // All iterators and references on the `node_hash_set` remain valid, excepting // for the past-the-end iterator, which is invalidated.