From: LLVM Packaging Team Date: Thu, 21 Jul 2022 07:14:44 +0000 (+0100) Subject: fix-typo X-Git-Tag: archive/raspbian/1%13.0.1-6_deb10u4+rpi1^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8e52c5c0de192f61b976228f0fd4e50ee324db84;p=llvm-toolchain-13.git fix-typo =================================================================== Gbp-Pq: Name fix-typo.diff --- diff --git a/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h b/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h index 9715c9d01b..394a461c06 100644 --- a/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h +++ b/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h @@ -79,7 +79,7 @@ protected: #ifndef NDEBUG ~RefCountedBase() { assert(RefCount == 0 && - "Destruction occured when there are still references to this."); + "Destruction occurred when there are still references to this."); } #else // Default the destructor in release builds, A trivial destructor may enable @@ -110,7 +110,7 @@ protected: #ifndef NDEBUG ~ThreadSafeRefCountedBase() { assert(RefCount == 0 && - "Destruction occured when there are still references to this."); + "Destruction occurred when there are still references to this."); } #else // Default the destructor in release builds, A trivial destructor may enable