regen singles

This commit is contained in:
BlackMATov
2022-11-06 01:34:35 +07:00
parent f9504306c0
commit 558e7b1342
4 changed files with 307 additions and 61 deletions

View File

@@ -65,7 +65,7 @@ TEST_CASE("meta/meta_examples/function/usage") {
CHECK(sub_result_value.get_type() == meta::resolve_type<int>());
// casts the dynamic returned value to the typed value
const int sub_function_typed_result = sub_result_value.cast<int>();
const int sub_function_typed_result = sub_result_value.get_as<int>();
// here is our typed result
CHECK(sub_function_typed_result == 42);