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-09-23 14:46:13 +0300
committerJacques Lucke <jacques@blender.org>2021-09-23 14:46:26 +0300
commitaadb7ef0718af9c54fa97d0ce10e3967a80cea2e (patch)
tree51533ab6a9b39f0b17621b0cc047d891bd0a3449 /source/blender/blenkernel/BKE_attribute_access.hh
parente86cf55667a74c469c325f1bae1868ac963fb87d (diff)
Geometry Nodes: add utility to print an attribute id.
Diffstat (limited to 'source/blender/blenkernel/BKE_attribute_access.hh')
-rw-r--r--source/blender/blenkernel/BKE_attribute_access.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_attribute_access.hh b/source/blender/blenkernel/BKE_attribute_access.hh
index cf54e7efa0d..77db479f525 100644
--- a/source/blender/blenkernel/BKE_attribute_access.hh
+++ b/source/blender/blenkernel/BKE_attribute_access.hh
@@ -101,6 +101,8 @@ class AttributeIDRef {
BLI_assert(this->is_anonymous());
return *anonymous_id_;
}
+
+ friend std::ostream &operator<<(std::ostream &stream, const AttributeIDRef &attribute_id);
};
} // namespace blender::bke