From: LLVM Packaging Team Date: Thu, 16 Jun 2022 10:00:08 +0000 (+0100) Subject: fix-typo X-Git-Tag: archive/raspbian/1%13.0.1-6_deb11u1+rpi1^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=4708e852b91ec8cf11aeecd1cf7160d76f0f8260;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