diff options
| author | Aiden Grossman <aidengrossman@google.com> | 2025-11-03 04:41:26 +0000 |
|---|---|---|
| committer | Aiden Grossman <aidengrossman@google.com> | 2025-11-03 04:41:26 +0000 |
| commit | c946b96d9bca595888535bcc0499fc1ea6a42192 (patch) | |
| tree | e6b2cbbc83f7f04040de8bf702c90736ea802e23 | |
| parent | bfcd67c34731aae4800ccfc897ebb3a679ea9136 (diff) | |
| download | llvm-c946b96d9bca595888535bcc0499fc1ea6a42192.zip llvm-c946b96d9bca595888535bcc0499fc1ea6a42192.tar.gz llvm-c946b96d9bca595888535bcc0499fc1ea6a42192.tar.bz2 | |
[libcxxabi] Update demangle/Utility.h
4eed68357e4361b3a3aeb349dec2612cfb74c8cc updated the LLVM side but did
not bump the libc++abi version. Bump the libc++abi version to fix the
test failure caused by the versions differing.
| -rw-r--r-- | libcxxabi/src/demangle/Utility.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxxabi/src/demangle/Utility.h b/libcxxabi/src/demangle/Utility.h index 8829f3f..76243f5 100644 --- a/libcxxabi/src/demangle/Utility.h +++ b/libcxxabi/src/demangle/Utility.h @@ -81,7 +81,7 @@ public: OutputBuffer(const OutputBuffer &) = delete; OutputBuffer &operator=(const OutputBuffer &) = delete; - virtual ~OutputBuffer() {} + virtual ~OutputBuffer() = default; operator std::string_view() const { return std::string_view(Buffer, CurrentPosition); |
