diff --git a/tests/algorithm_tests.cpp b/tests/algorithm_tests.cpp index 2ee853a..3cf46d2 100644 --- a/tests/algorithm_tests.cpp +++ b/tests/algorithm_tests.cpp @@ -100,11 +100,11 @@ SUITE(copy_tests) { // dynamic source and destination span { - std::array src{1, 2, 3, 4, 5}; - std::array dst{}; + std::array src{1, 2, 3, 4, 5}; + std::array dst{}; - span src_span(src); - span dst_span(dst); + span src_span(src); + span dst_span(dst); copy(src_span, dst_span); copy(src_span, dst_span.subspan(src_span.size())); @@ -117,11 +117,11 @@ SUITE(copy_tests) // static source and dynamic destination span { - std::array src{1, 2, 3, 4, 5}; - std::array dst{}; + std::array src{1, 2, 3, 4, 5}; + std::array dst{}; - span src_span(src); - span dst_span(dst); + span src_span(src); + span dst_span(dst); copy(src_span, dst_span); copy(src_span, dst_span.subspan(src_span.size())); @@ -134,11 +134,11 @@ SUITE(copy_tests) // dynamic source and static destination span { - std::array src{1, 2, 3, 4, 5}; - std::array dst{}; + std::array src{1, 2, 3, 4, 5}; + std::array dst{}; - span src_span(src); - span dst_span(dst); + span src_span(src); + span dst_span(dst); copy(src_span, dst_span); copy(src_span, dst_span.subspan(src_span.size())); @@ -151,11 +151,11 @@ SUITE(copy_tests) // static source and destination span { - std::array src{1, 2, 3, 4, 5}; - std::array dst{}; + std::array src{1, 2, 3, 4, 5}; + std::array dst{}; - span src_span(src); - span dst_span(dst); + span src_span(src); + span dst_span(dst); copy(src_span, dst_span); copy(src_span, dst_span.subspan(src_span.size())); @@ -206,4 +206,4 @@ SUITE(copy_tests) } } -int main(int, const char* []) { return UnitTest::RunAllTests(); } +int main() { return UnitTest::RunAllTests(); }