blob: f33eadb9e4f767b1b2ba197ba956745cf6812bda (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/include/optional b/include/optional
index fc172c7..4048fa2 100644
--- a/include/optional
+++ b/include/optional
@@ -301,7 +301,7 @@ struct __optional_destruct_base<_Tp, false>
bool __engaged_;
_LIBCPP_INLINE_VISIBILITY
- _LIBCPP_CONSTEXPR_SINCE_CXX20 ~__optional_destruct_base()
+ ~__optional_destruct_base()
{
if (__engaged_)
__val_.~value_type();
|