Skip to content

Commit ddf44b2

Browse files
committed
Add missing constexpr
1 parent ab4a062 commit ddf44b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/op_subscript.runtime.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ struct WithNonTrivialDtor {
4040
TEST_CONSTEXPR_CXX23 friend bool operator==(WithNonTrivialDtor const& x, WithNonTrivialDtor const& y) {
4141
return x.padding == y.padding;
4242
}
43-
~WithNonTrivialDtor() {}
43+
TEST_CONSTEXPR_CXX23 ~WithNonTrivialDtor() {}
4444
};
4545

4646
template <class T>

0 commit comments

Comments
 (0)