From 1d6188404c12844e28cf792a6e27c1bfa18d2297 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 22 Apr 2018 03:18:13 +0300 Subject: [PATCH] Added optional INILINE_BUFFER_SIZE template param to BasicMemoryWriter (#716) --- fmt/format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fmt/format.h b/fmt/format.h index 761baa33..bcfb7c29 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())