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:
authorHans Goudey <h.goudey@me.com>2022-09-05 23:48:36 +0300
committerHans Goudey <h.goudey@me.com>2022-09-05 23:48:47 +0300
commit1fcc673230bf585b2b0239d4476b94523bd0ec21 (patch)
treecc4152cb86bd26eb16908e86039c2c67faed5d99 /source/blender/blenkernel/BKE_attribute.hh
parent57639186514079d3fce590006616c543628fe1d8 (diff)
Cleanup: Remove unused function
This had a specific use case relating to the `CurveEval` type which shouldn't be necessary anymore.
Diffstat (limited to 'source/blender/blenkernel/BKE_attribute.hh')
-rw-r--r--source/blender/blenkernel/BKE_attribute.hh5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/blenkernel/BKE_attribute.hh b/source/blender/blenkernel/BKE_attribute.hh
index 6284cce9dc0..83e1a3208ae 100644
--- a/source/blender/blenkernel/BKE_attribute.hh
+++ b/source/blender/blenkernel/BKE_attribute.hh
@@ -752,11 +752,6 @@ class CustomDataAttributes {
bool create_by_move(const AttributeIDRef &attribute_id, eCustomDataType data_type, void *buffer);
bool remove(const AttributeIDRef &attribute_id);
- /**
- * Change the order of the attributes to match the order of IDs in the argument.
- */
- void reorder(Span<AttributeIDRef> new_order);
-
bool foreach_attribute(const AttributeForeachCallback callback, eAttrDomain domain) const;
};