From fb17127389e3f9aa2731d5c625330a452280d41a Mon Sep 17 00:00:00 2001 From: Olli Lupton Date: Tue, 6 Jun 2023 14:02:20 +0200 Subject: [PATCH] Work around a compilation failure with Debian's GCC 10.2 (#2372) --- test/unit_tests/container/container.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/test/unit_tests/container/container.cpp b/test/unit_tests/container/container.cpp index 395e796bb4..f21bbc2a04 100644 --- a/test/unit_tests/container/container.cpp +++ b/test/unit_tests/container/container.cpp @@ -36,11 +36,6 @@ using owning_handle = handle_interface>; } // namespace TEST_CASE("Tag type with array_dimension and without num_variables", "[Neuron][data_structures]") { - storage data{}; + storage data; // Debian's GCC 10.2 doesn't like a {} before the ; owning_handle instance{data}; - // GIVEN("A null handle") { - // THEN("Check it is really null") { - // REQUIRE_FALSE(handle); - // } - // } }