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) {}