From 0df56dfcb4236fd955942103041287f7cf13695b Mon Sep 17 00:00:00 2001 From: Charles Milette Date: Sun, 15 Dec 2019 16:24:47 -0500 Subject: [PATCH] Code style fixes --- include/fmt/format.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 1fad5ab7..9c24abe5 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -700,10 +700,12 @@ void basic_memory_buffer::grow(std::size_t size) { if (old_data != store_) Allocator::deallocate(old_data, old_capacity); } -template> +template > using memory_buffer = basic_memory_buffer; -template> +template > using wmemory_buffer = basic_memory_buffer; /** A formatting error such as invalid format string. */