[Bf-blender-cvs] [a45e9ad95a7] virtual-array-attributes: cleanup

Jacques Lucke noreply at git.blender.org
Sat Apr 17 14:25:50 CEST 2021


Commit: a45e9ad95a759b94b38d420987d9c195c3cb9d22
Author: Jacques Lucke
Date:   Sat Apr 17 14:24:04 2021 +0200
Branches: virtual-array-attributes
https://developer.blender.org/rBa45e9ad95a759b94b38d420987d9c195c3cb9d22

cleanup

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

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 0dff3cfeda4..0d6e757230b 100644
--- a/source/blender/blenkernel/BKE_attribute_access.hh
+++ b/source/blender/blenkernel/BKE_attribute_access.hh
@@ -61,12 +61,12 @@ struct WriteAttributeLookup {
 
 class OutputAttribute {
  public:
-  using SaveF = std::function<void(OutputAttribute &)>;
+  using SaveFn = std::function<void(OutputAttribute &)>;
 
  private:
   std::unique_ptr<GVMutableArray> varray_;
   AttributeDomain domain_;
-  SaveF save_;
+  SaveFn save_;
   std::optional<fn::GVMutableArray_GSpan> optional_span_varray_;
   bool ignore_old_values_ = false;
 
@@ -75,7 +75,7 @@ class OutputAttribute {
 
   OutputAttribute(std::unique_ptr<GVMutableArray> varray,
                   AttributeDomain domain,
-                  SaveF save,
+                  SaveFn save,
                   const bool ignore_old_values)
       : varray_(std::move(varray)),
         domain_(domain),



More information about the Bf-blender-cvs mailing list