From 19672095b1ff51631de37313c5683e54025bb44c Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Tue, 22 Oct 2024 11:50:31 +0200 Subject: [PATCH] remove old patch --- debian/patches/fix-typo.diff | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 debian/patches/fix-typo.diff diff --git a/debian/patches/fix-typo.diff b/debian/patches/fix-typo.diff deleted file mode 100644 index 4692f8b3..00000000 --- a/debian/patches/fix-typo.diff +++ /dev/null @@ -1,35 +0,0 @@ -Index: llvm-toolchain-14-14.0.6/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h -=================================================================== ---- llvm-toolchain-14-14.0.6.orig/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h -+++ llvm-toolchain-14-14.0.6/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h -@@ -84,7 +84,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 -@@ -115,7 +115,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 -Index: llvm-toolchain-14-14.0.6/llvm/include/llvm/Support/CommandLine.h -=================================================================== ---- llvm-toolchain-14-14.0.6.orig/llvm/include/llvm/Support/CommandLine.h -+++ llvm-toolchain-14-14.0.6/llvm/include/llvm/Support/CommandLine.h -@@ -1308,7 +1308,7 @@ template <> struct applicator struct applicator { - static void opt(MiscFlags MF, Option &O) { - assert((MF != Grouping || O.ArgStr.size() == 1) && -- "cl::Grouping can only apply to single charater Options."); -+ "cl::Grouping can only apply to single character Options."); - O.setMiscFlag(MF); - } - };