From e64fc2fde9033f0f2e8efb1e6dc7e9afb3a45ee9 Mon Sep 17 00:00:00 2001 From: rsadowski Date: Sun, 7 Jun 2026 05:14:58 +0000 Subject: [PATCH] Missing cvs remove --- ..._synfig_rendering_software_function_array_h | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 multimedia/synfig/patches/patch-src_synfig_rendering_software_function_array_h diff --git a/multimedia/synfig/patches/patch-src_synfig_rendering_software_function_array_h b/multimedia/synfig/patches/patch-src_synfig_rendering_software_function_array_h deleted file mode 100644 index bec89cbbaa3..00000000000 --- a/multimedia/synfig/patches/patch-src_synfig_rendering_software_function_array_h +++ /dev/null @@ -1,18 +0,0 @@ -Fix build with llvm 19: - -rendering/software/function/array.h:432:59: error: a template argument list is expected after a name prefixed by the template keyword [-Wmissing-template-arg-list-after-template-kw] - 432 | { for(Iterator i(*this); i; ++i) i.get_array().template fill(x); } - | ^ - -Index: src/synfig/rendering/software/function/array.h ---- src/synfig/rendering/software/function/array.h.orig -+++ src/synfig/rendering/software/function/array.h -@@ -429,7 +429,7 @@ class Array: public Array { (public) - }; - - void fill(const Type &x) const -- { for(Iterator i(*this); i; ++i) i.get_array().template fill(x); } -+ { for(Iterator i(*this); i; ++i) i.get_array().template fill(x); } - - template - void assign(const Array &x) const