Skip to content

Commit 97233a8

Browse files
[libc++abi] Use = default; for OutputBuffer's destructor
This mirrors the change in 4eed683 to libcxxabi, which is necessary for fixing CI failure.
1 parent 9ed6be8 commit 97233a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxxabi/src/demangle/Utility.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class OutputBuffer {
8181
OutputBuffer(const OutputBuffer &) = delete;
8282
OutputBuffer &operator=(const OutputBuffer &) = delete;
8383

84-
virtual ~OutputBuffer() {}
84+
virtual ~OutputBuffer() = default;
8585

8686
operator std::string_view() const {
8787
return std::string_view(Buffer, CurrentPosition);

0 commit comments

Comments
 (0)