From 82a6e06cfa56b07311dfcb5b28ccb7f4bcc5456f Mon Sep 17 00:00:00 2001 From: gabime Date: Sun, 22 Apr 2018 01:10:04 +0300 Subject: [PATCH] Added optional INILINE_BUFFER_SIZE template param to BasicMemoryWriter --- fmt/format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fmt/format.h b/fmt/format.h index 761baa33..b4283853 100644 --- a/fmt/format.h +++ b/fmt/format.h @@ -3320,10 +3320,10 @@ void BasicWriter::write_double(T value, const Spec &spec) { accessed as a C string with ``out.c_str()``. \endrst */ -template > +template ,std::size_t INLINE_BUFFER_SIZE = internal::INLINE_BUFFER_SIZE> class BasicMemoryWriter : public BasicWriter { private: - internal::MemoryBuffer buffer_; + internal::MemoryBuffer buffer_; public: explicit BasicMemoryWriter(const Allocator& alloc = Allocator())