From fa31d58934f067c57c2d8647d20c6acbf6d27e2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Mon, 7 Jun 2021 17:44:39 +0200 Subject: [PATCH] Don't use removed-in-C++20 allocator parts in CustomAllocator tests --- tests/SelfTest/UsageTests/Matchers.tests.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/SelfTest/UsageTests/Matchers.tests.cpp b/tests/SelfTest/UsageTests/Matchers.tests.cpp index 93543434..cf6f3ce7 100644 --- a/tests/SelfTest/UsageTests/Matchers.tests.cpp +++ b/tests/SelfTest/UsageTests/Matchers.tests.cpp @@ -245,12 +245,8 @@ namespace { namespace MatchersTests { ~CustomAllocator() = default; - using std::allocator::address; using std::allocator::allocate; - using std::allocator::construct; using std::allocator::deallocate; - using std::allocator::max_size; - using std::allocator::destroy; }; TEST_CASE("Vector matchers", "[matchers][vector]") {