File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,11 @@ template <typename T> class mock_allocator {
3737 MOCK_METHOD (void , deallocate, (T*, size_t ));
3838};
3939
40+ <<<<<<< HEAD
4041template <typename Allocator, bool PropagateOnMove = false >
42+ =======
43+ template <typename Allocator, bool PropagateOnMove = false >
44+ >>>>>>> 4746ddcefb09bf3c4e44584715f4e7e8f5d5d2a6
4145class allocator_ref {
4246 private:
4347 Allocator* alloc_;
@@ -52,7 +56,6 @@ class allocator_ref {
5256 using propagate_on_container_move_assignment =
5357 typename std::conditional<PropagateOnMove, std::true_type,
5458 std::false_type>::type;
55-
5659 explicit allocator_ref (Allocator* alloc = nullptr ) : alloc_(alloc) {}
5760
5861 allocator_ref (const allocator_ref& other) : alloc_(other.alloc_) {}
You can’t perform that action at this time.
0 commit comments