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:
Diffstat (limited to 'include/spdlog/formatter.h')
-rw-r--r--include/spdlog/formatter.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/spdlog/formatter.h b/include/spdlog/formatter.h
index 39d86524..afc6ee66 100644
--- a/include/spdlog/formatter.h
+++ b/include/spdlog/formatter.h
@@ -15,5 +15,6 @@ class formatter
public:
virtual ~formatter() = default;
virtual void format(const details::log_msg &msg, fmt::memory_buffer &dest) = 0;
+ virtual std::unique_ptr<formatter> clone() const = 0;
};
} // namespace spdlog