1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-10 23:44:29 +00:00

add MAGIC_ENUM_NO_ASSERT

This commit is contained in:
neargye 2023-06-12 17:43:19 +04:00
parent cf659c59c8
commit e7749da06b
7 changed files with 59 additions and 61 deletions

View file

@ -295,14 +295,6 @@ TEST_CASE("containers_set") {
REQUIRE_FALSE(magic_enum::enum_count<Color>() == color_set_not_const.size());
}
TEST_CASE("containers_flat_set") {
// constexpr magic_enum::containers::flat_set color_flat_set_filled = {Color::RED, Color::GREEN, Color::BLUE};
// REQUIRE_FALSE(color_flat_set_filled.empty());
// REQUIRE(color_flat_set_filled.size() == 3);
// REQUIRE(magic_enum::enum_count<Color>() == color_flat_set_filled.size());
}
TEST_CASE("map_like_container") {
using namespace magic_enum::ostream_operators;