Code style fixes
This commit is contained in:
parent
f913388a1c
commit
0df56dfcb4
@ -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);
|
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>;
|
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>;
|
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. */
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user