From 4008f31add3d7719abe1713b5354f31892d73fcd Mon Sep 17 00:00:00 2001 From: Charless Milette Date: Sat, 13 Nov 2021 11:51:22 -0500 Subject: [PATCH] Fix missing spdlog:: --- include/spdlog/fmt/bin_to_hex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/fmt/bin_to_hex.h b/include/spdlog/fmt/bin_to_hex.h index cf0c84ff..ab06651b 100644 --- a/include/spdlog/fmt/bin_to_hex.h +++ b/include/spdlog/fmt/bin_to_hex.h @@ -216,7 +216,7 @@ struct formatter, char> if (put_positions) { - fmt_lib::format_to(inserter, "{:04X}: ", pos); + spdlog::fmt_lib::format_to(inserter, "{:04X}: ", pos); } } };