From 8b1c3fb67f027faef1c49a18c6064ea23ae7a2be Mon Sep 17 00:00:00 2001 From: Simon Brand Date: Wed, 22 Aug 2018 15:50:43 +0100 Subject: [PATCH] Fix the other bad comment --- tl/optional.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tl/optional.hpp b/tl/optional.hpp index b74fb98..3514d9e 100644 --- a/tl/optional.hpp +++ b/tl/optional.hpp @@ -348,7 +348,7 @@ struct optional_storage_base { bool m_has_value; }; -// This case is for when T is not trivially destructible +// This case is for when T is trivially destructible. template struct optional_storage_base { TL_OPTIONAL_11_CONSTEXPR optional_storage_base() noexcept : m_dummy(), m_has_value(false) {}