Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-04-17 15:24:04 +0300
committerJacques Lucke <jacques@blender.org>2021-04-17 15:24:04 +0300
commita45e9ad95a759b94b38d420987d9c195c3cb9d22 (patch)
tree699cd55825234023ce801149a820971d0cf62671
parentd9df1550045f268e5e32eec97e8dacc8b0bcc0bc (diff)
cleanup
-rw-r--r--source/blender/blenkernel/BKE_attribute_access.hh6
1 files changed, 3 insertions, 3 deletions
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),