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:
authorErich Eckner <git@eckner.net>2023-05-22 20:18:50 +0200
committerErich Eckner <git@eckner.net>2023-05-22 20:18:50 +0200
commite74cde76c104df82b120a7b13964cb786da8f565 (patch)
tree39967e24037929c04aaf79922aa260b437a60a5e /community/blender/blender-idprop_create-static-assert-float.patch
parent73e1d3b448cc583ab38cae4d61a26f313fad946b (diff)
community -> extra
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).");