[Bf-blender-cvs] [462d3bde6e7] temp-virtual-array-value-type: fix

Jacques Lucke noreply at git.blender.org
Sun Oct 31 13:39:02 CET 2021


Commit: 462d3bde6e75a673051d85c7039053bbd4349ea8
Author: Jacques Lucke
Date:   Sun Oct 31 13:36:24 2021 +0100
Branches: temp-virtual-array-value-type
https://developer.blender.org/rB462d3bde6e75a673051d85c7039053bbd4349ea8

fix

===================================================================

M	source/blender/blenkernel/BKE_attribute_access.hh

===================================================================

diff --git a/source/blender/blenkernel/BKE_attribute_access.hh b/source/blender/blenkernel/BKE_attribute_access.hh
index 81d2dd13e87..0973abfe29d 100644
--- a/source/blender/blenkernel/BKE_attribute_access.hh
+++ b/source/blender/blenkernel/BKE_attribute_access.hh
@@ -252,7 +252,7 @@ template<typename T> class OutputAttribute_Typed {
   OutputAttribute_Typed(OutputAttribute attribute) : attribute_(std::move(attribute))
   {
     if (attribute_) {
-      varray_ = attribute_.varray().typed<T>();
+      varray_ = attribute_.varray().template typed<T>();
     }
   }



More information about the Bf-blender-cvs mailing list