Fix copy-paste fail

This commit is contained in:
Charles Milette 2019-12-15 16:27:36 -05:00 committed by GitHub
parent 0df56dfcb4
commit 24d182bc13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -701,11 +701,11 @@ void basic_memory_buffer<T, SIZE, Allocator>::grow(std::size_t size) {
} }
template <std::size_t SIZE = inline_buffer_size, template <std::size_t SIZE = inline_buffer_size,
typename Allocator = std::allocator<T>> typename Allocator = std::allocator<char>>
using memory_buffer = basic_memory_buffer<char, SIZE, Allocator>; using memory_buffer = basic_memory_buffer<char, SIZE, Allocator>;
template <std::size_t SIZE = inline_buffer_size, template <std::size_t SIZE = inline_buffer_size,
typename Allocator = std::allocator<T>> typename Allocator = std::allocator<wchar_t>>
using wmemory_buffer = basic_memory_buffer<wchar_t, SIZE, Allocator>; using wmemory_buffer = basic_memory_buffer<wchar_t, SIZE, Allocator>;
/** A formatting error such as invalid format string. */ /** A formatting error such as invalid format string. */