Skip to content

Commit

Permalink
Work around a compilation failure with Debian's GCC 10.2 (#2372)
Browse files Browse the repository at this point in the history
  • Loading branch information
olupton committed Jun 6, 2023
1 parent 6c529a4 commit fb17127
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions test/unit_tests/container/container.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ using owning_handle = handle_interface<owning_identifier<storage>>;
} // 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);
// }
// }
}

0 comments on commit fb17127

Please sign in to comment.