diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2023-09-06 21:09:29 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2023-09-06 21:09:29 +0200 |
| commit | 4c68156184be63e75f54f5b8b06a640d7d2a497a (patch) | |
| tree | 0b97b651d1a0b4c5742e561b3a345da7e145f669 /source/lib/proto/src/message.cpp | |
| parent | 17a3bb9337fd7e4a57354ed5359e449d5ab1388c (diff) | |
| download | wanda-4c68156184be63e75f54f5b8b06a640d7d2a497a.tar.xz wanda-4c68156184be63e75f54f5b8b06a640d7d2a497a.zip | |
deps: remove asio remnants and fix fmt
Diffstat (limited to 'source/lib/proto/src/message.cpp')
| -rw-r--r-- | source/lib/proto/src/message.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lib/proto/src/message.cpp b/source/lib/proto/src/message.cpp index dad3e86..f44ca06 100644 --- a/source/lib/proto/src/message.cpp +++ b/source/lib/proto/src/message.cpp @@ -1,6 +1,6 @@ #include "wanda/proto/message.hpp" -#include <fmt/format.h> +#include <spdlog/common.h> #include <ios> #include <iterator> @@ -76,7 +76,7 @@ namespace wanda::proto } // namespace wanda::proto -auto fmt::formatter<wanda::proto::message>::format(wanda::proto::message const & message, format_context & context) const -> decltype(context.out()) +auto spdlog::fmt_lib::formatter<wanda::proto::message>::format(wanda::proto::message const & message, format_context & context) const -> decltype(context.out()) { return formatter<std::string>::format(static_cast<std::string>(message), context); } |
