Added space before comma

This commit is contained in:
gabime 2018-04-22 01:27:53 +03:00
parent 82a6e06cfa
commit 301f8d6440

View File

@ -3320,7 +3320,7 @@ void BasicWriter<Char>::write_double(T value, const Spec &spec) {
accessed as a C string with ``out.c_str()``. accessed as a C string with ``out.c_str()``.
\endrst \endrst
*/ */
template <typename Char, typename Allocator = std::allocator<Char> ,std::size_t INLINE_BUFFER_SIZE = internal::INLINE_BUFFER_SIZE> template <typename Char, typename Allocator = std::allocator<Char>, std::size_t INLINE_BUFFER_SIZE = internal::INLINE_BUFFER_SIZE>
class BasicMemoryWriter : public BasicWriter<Char> { class BasicMemoryWriter : public BasicWriter<Char> {
private: private:
internal::MemoryBuffer<Char, INLINE_BUFFER_SIZE, Allocator> buffer_; internal::MemoryBuffer<Char, INLINE_BUFFER_SIZE, Allocator> buffer_;