From b73ed1face2c609958556e6f2b7704bbd8aaa263 Mon Sep 17 00:00:00 2001 From: Arnur Nigmetov Date: Mon, 1 Jun 2020 18:10:22 -0700 Subject: Remove spdlog and fmt from matching distance code. --- matching/include/matching_distance.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'matching/include/matching_distance.h') 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& dic) { for(const auto kv : dic) { - fmt::print("{} -> {}\n", kv.first, kv.second); + std::cout << kv.first << " -> " << kv.second << "\n"; } } -- cgit v1.2.3