Code style fixes

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

View File

@ -700,10 +700,12 @@ void basic_memory_buffer<T, SIZE, Allocator>::grow(std::size_t size) {
if (old_data != store_) Allocator::deallocate(old_data, old_capacity);
}
template<std::size_t SIZE = inline_buffer_size, typename Allocator = std::allocator<T>>
template <std::size_t SIZE = inline_buffer_size,
typename Allocator = std::allocator<T>>
using memory_buffer = basic_memory_buffer<char, SIZE, Allocator>;
template<std::size_t SIZE = inline_buffer_size, typename Allocator = std::allocator<T>>
template <std::size_t SIZE = inline_buffer_size,
typename Allocator = std::allocator<T>>
using wmemory_buffer = basic_memory_buffer<wchar_t, SIZE, Allocator>;
/** A formatting error such as invalid format string. */