remove fmtlib from examples

This commit is contained in:
BlackMATov
2022-11-25 06:15:45 +07:00
parent 63e7ba13e3
commit a6ba69038c
9 changed files with 9 additions and 34 deletions

View File

@@ -40,8 +40,8 @@ TEST_CASE("meta/meta_examples/variable/usage") {
CHECK_THROWS(pi_variable.set(6.0));
// prints all variables in the scope
fmt::print("* {}:\n", constants_scope.get_name());
std::cout << "* " << constants_scope.get_name() << std::endl;
for ( auto&& [index, variable] : constants_scope.get_variables() ) {
fmt::print(" - {}:{}\n", index.get_name(), variable.get());
std::cout << " - " << index.get_name() << ":" << variable.get() << std::endl;
}
}