summaryrefslogtreecommitdiff
path: root/matching/include/matching_distance.h
diff options
context:
space:
mode:
Diffstat (limited to 'matching/include/matching_distance.h')
-rw-r--r--matching/include/matching_distance.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/matching/include/matching_distance.h b/matching/include/matching_distance.h
index e1679dc..618330d 100644
--- a/matching/include/matching_distance.h
+++ b/matching/include/matching_distance.h
@@ -281,7 +281,7 @@ namespace md {
void print_map(const std::map<K, V>& dic)
{
for(const auto kv : dic) {
- fmt::print("{} -> {}\n", kv.first, kv.second);
+ std::cout << kv.first << " -> " << kv.second << "\n";
}
}