mirror of
https://github.com/TartanLlama/optional.git
synced 2025-07-30 01:47:15 +02:00
Fix the other bad comment
This commit is contained in:
@ -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 <class T> struct optional_storage_base<T, true> {
|
||||
TL_OPTIONAL_11_CONSTEXPR optional_storage_base() noexcept
|
||||
: m_dummy(), m_has_value(false) {}
|
||||
|
Reference in New Issue
Block a user