summaryrefslogtreecommitdiff
path: root/absl/container/btree_set.h
diff options
context:
space:
mode:
Diffstat (limited to 'absl/container/btree_set.h')
-rw-r--r--absl/container/btree_set.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/absl/container/btree_set.h b/absl/container/btree_set.h
index 32a7c506..695b09f5 100644
--- a/absl/container/btree_set.h
+++ b/absl/container/btree_set.h
@@ -766,17 +766,6 @@ struct set_slot_policy {
construct(alloc, new_slot, old_slot);
destroy(alloc, old_slot);
}
-
- template <typename Alloc>
- static void swap(Alloc * /*alloc*/, slot_type *a, slot_type *b) {
- using std::swap;
- swap(*a, *b);
- }
-
- template <typename Alloc>
- static void move(Alloc * /*alloc*/, slot_type *src, slot_type *dest) {
- *dest = std::move(*src);
- }
};
// A parameters structure for holding the type parameters for a btree_set.