From 4797ca025eef17b8df42edd8c9bde83c43806bf1 Mon Sep 17 00:00:00 2001 From: vitaut Date: Sun, 20 Dec 2015 07:29:59 -0800 Subject: [PATCH] POD -> trivially copyable/constructible --- format.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/format.h b/format.h index 15c522f9..a9fdfdbd 100644 --- a/format.h +++ b/format.h @@ -603,8 +603,8 @@ void Buffer::append(const U *begin, const U *end) { namespace internal { -// A memory buffer for POD types with the first SIZE elements stored in -// the object itself. +// A memory buffer for trivially copyable/constructible types with the first SIZE +// elements stored in the object itself. template > class MemoryBuffer : private Allocator, public Buffer { private: @@ -949,8 +949,8 @@ struct Value { }; }; -// A formatting argument. It is a POD type to allow storage in -// internal::MemoryBuffer. +// A formatting argument. It is a trivially copyable/constructible type to +// allow storage in internal::MemoryBuffer. struct Arg : Value { Type type; };