implicit uvalue's ctor from value, remove all uvalue's dynamic operators

This commit is contained in:
BlackMATov
2023-01-12 09:44:55 +07:00
parent b60912b6fd
commit 1ebd2e75ed
25 changed files with 410 additions and 767 deletions

View File

@@ -44,6 +44,6 @@ TEST_CASE("meta/meta_examples/variable/usage") {
// prints all variables in the scope
std::cout << "* " << constants_scope.get_name() << std::endl;
for ( auto&& [index, variable] : constants_scope.get_variables() ) {
std::cout << " - " << index.get_name() << ":" << variable.get() << std::endl;
std::cout << " - " << index.get_name() << ":" << variable.get().get_as<double>() << std::endl;
}
}