From cfc4a7681bc39127e2d4e705339718bdf50e41f8 Mon Sep 17 00:00:00 2001 From: Clang Robot Date: Sun, 17 Sep 2023 01:23:31 +0000 Subject: [PATCH] :art: Committing clang-format changes --- test/tests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tests.cpp b/test/tests.cpp index e744064..50ae600 100644 --- a/test/tests.cpp +++ b/test/tests.cpp @@ -1515,9 +1515,9 @@ TEST_CASE( "( allocator, future ) -> size_t", "[task_pool][submit][allocator]" ) counts allocations; counting_allocator< int > allocator( allocations ); - using data_type = std::vector< int, counting_allocator< int > >; + using data_type = std::vector< int, counting_allocator< int > >; static std::size_t const value_counts = 1000; - auto make_data = []( std::allocator_arg_t /*tag*/, + auto make_data = []( std::allocator_arg_t /*tag*/, counting_allocator< int > const& alloc, std::size_t count ) { return data_type( count, 1, alloc ); };