Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/community/blender/blender-idprop_create-static-assert-float.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/blender/blender-idprop_create-static-assert-float.patch')
-rw-r--r--community/blender/blender-idprop_create-static-assert-float.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/community/blender/blender-idprop_create-static-assert-float.patch b/community/blender/blender-idprop_create-static-assert-float.patch
deleted file mode 100644
index 5be594e5..00000000
--- a/community/blender/blender-idprop_create-static-assert-float.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -rauN blender/source/blender/blenkernel/intern/idprop_create.cc blender-idprop_create-static-assert-float-patch/source/blender/blenkernel/intern/idprop_create.cc
---- blender/source/blender/blenkernel/intern/idprop_create.cc 2022-04-03 14:32:20.257350527 +0200
-+++ blender-idprop_create-static-assert-float-patch/source/blender/blenkernel/intern/idprop_create.cc 2022-04-03 14:35:17.851234918 +0200
-@@ -92,7 +92,7 @@
- Span<PrimitiveType> values)
- {
- static_assert(std::is_same_v<PrimitiveType, int32_t> || std::is_same_v<PrimitiveType, float_t> ||
-- std::is_same_v<PrimitiveType, double>,
-+ std::is_same_v<PrimitiveType, float> || std::is_same_v<PrimitiveType, double>,
- "Allowed values for PrimitiveType are int32_t, float and double.");
- static_assert(!std::is_same_v<PrimitiveType, int32_t> || id_property_subtype == IDP_INT,
- "PrimitiveType and id_property_type do not match (int32_t).");