Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabime <gmelman1@gmail.com>2019-08-28 18:46:09 +0300
committergabime <gmelman1@gmail.com>2019-08-28 18:46:09 +0300
commitf5492aed12b144df73faf8ae336b3dbc39ebbc38 (patch)
treefca593f163fbdc2d39d48307c35f863a17e7a4b5 /include/spdlog/formatter.h
parentc2efd6ee58a7e62c0a81c7bda558f020233d2231 (diff)
Unified usage of fmt::memory_buffer across the codebase
Diffstat (limited to 'include/spdlog/formatter.h')
-rw-r--r--include/spdlog/formatter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/spdlog/formatter.h b/include/spdlog/formatter.h
index b133f6e9..9a4ed035 100644
--- a/include/spdlog/formatter.h
+++ b/include/spdlog/formatter.h
@@ -12,7 +12,7 @@ class formatter
{
public:
virtual ~formatter() = default;
- virtual void format(const details::log_msg &msg, fmt::memory_buffer &dest) = 0;
+ virtual void format(const details::log_msg &msg, memory_buf_t &dest) = 0;
virtual std::unique_ptr<formatter> clone() const = 0;
};
} // namespace spdlog