Skip to content

Commit 35b131e

Browse files
committed
Merge branch 'fix/issue-4487' of https://github.com/toprakmurat/fmt into fix/issue-4487
2 parents 764fca9 + 4746ddc commit 35b131e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/mock-allocator.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@ template <typename T> class mock_allocator {
3737
MOCK_METHOD(void, deallocate, (T*, size_t));
3838
};
3939

40+
<<<<<<< HEAD
4041
template <typename Allocator, bool PropagateOnMove = false>
42+
=======
43+
template <typename Allocator, bool PropagateOnMove = false>
44+
>>>>>>> 4746ddcefb09bf3c4e44584715f4e7e8f5d5d2a6
4145
class 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_) {}

0 commit comments

Comments
 (0)