remove fully dynamic less and equal uvalue's operators

This commit is contained in:
BlackMATov
2022-12-30 15:10:44 +07:00
parent 398d4012f9
commit 80c82b1027
10 changed files with 24 additions and 287 deletions

View File

@@ -51,9 +51,6 @@ TEST_CASE("meta/meta_examples/enum/usage") {
// converts the enumerator to its name
CHECK(align_type.value_to_name(e) == "center");
// also, it works with dynamic value types
CHECK(align_type.value_to_name(meta::uvalue{e}) == "center");
// ... and back again
CHECK(align_type.name_to_value("center") == e);
}