mirror of
https://github.com/Neargye/magic_enum.git
synced 2026-01-08 23:24:20 +00:00
fix #362
This commit is contained in:
parent
bf3c74ab7e
commit
f2ad79f06b
1 changed files with 1 additions and 1 deletions
|
|
@ -282,7 +282,7 @@ TEST_CASE("containers_set") {
|
|||
REQUIRE(color_set_filled.size() == 3);
|
||||
REQUIRE(magic_enum::enum_count<Color>() == color_set_filled.size());
|
||||
|
||||
magic_enum::containers::set color_set_not_const {Color::RED, Color::GREEN, Color::BLUE};
|
||||
magic_enum::containers::set color_set_not_const = {Color::RED, Color::GREEN, Color::BLUE};
|
||||
REQUIRE_FALSE(color_set_not_const.empty());
|
||||
REQUIRE(color_set_not_const.size() == 3);
|
||||
REQUIRE(magic_enum::enum_count<Color>() == color_set_not_const.size());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue