From dd8ab0232e6d3ef76c2d6fc138e63304804940a8 Mon Sep 17 00:00:00 2001 From: Simon Brand Date: Wed, 22 Aug 2018 15:22:43 +0100 Subject: [PATCH] Fix trivially destructible comment --- tl/optional.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tl/optional.hpp b/tl/optional.hpp index 60b14d2..b74fb98 100644 --- a/tl/optional.hpp +++ b/tl/optional.hpp @@ -321,8 +321,8 @@ struct is_nothrow_swappable #endif // The storage base manages the actual storage, and correctly propagates -// trivial destruction from T This case is for when T is trivially -// destructible +// trivial destruction from T. This case is for when T is not trivially +// destructible. template ::value> struct optional_storage_base { TL_OPTIONAL_11_CONSTEXPR optional_storage_base() noexcept