[libcxx-commits] [libcxxabi] c946b96 - [libcxxabi] Update demangle/Utility.h

Aiden Grossman via libcxx-commits libcxx-commits at lists.llvm.org
Sun Nov 2 20:42:27 PST 2025


Author: Aiden Grossman
Date: 2025-11-03T04:41:26Z
New Revision: c946b96d9bca595888535bcc0499fc1ea6a42192

URL: https://github.com/llvm/llvm-project/commit/c946b96d9bca595888535bcc0499fc1ea6a42192
DIFF: https://github.com/llvm/llvm-project/commit/c946b96d9bca595888535bcc0499fc1ea6a42192.diff

LOG: [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.

Added: 
    

Modified: 
    libcxxabi/src/demangle/Utility.h

Removed: 
    


################################################################################
diff  --git a/libcxxabi/src/demangle/Utility.h b/libcxxabi/src/demangle/Utility.h
index 8829f3fa13a93..76243f5d3280c 100644
--- a/libcxxabi/src/demangle/Utility.h
+++ b/libcxxabi/src/demangle/Utility.h
@@ -81,7 +81,7 @@ class OutputBuffer {
   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);


        


More information about the libcxx-commits mailing list