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

@@ -58,9 +58,9 @@ TEST_CASE("meta/meta_examples/class/type") {
const meta::class_type rectangle_type = meta::resolve_type<rectangle>();
// prints all class methods
fmt::print("* rectangle:\n");
std::cout << "* rectangle" << std::endl;
for ( auto&& [index, method] : rectangle_type.get_methods() ) {
fmt::print(" + {}/{}\n", index.get_name(), index.get_type().get_arity());
std::cout << " + " << index.get_name() << "/" << index.get_type().get_arity() << std::endl;
}
}