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
path: root/source
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-05-13 14:06:28 +0300
committerJacques Lucke <jacques@blender.org>2021-05-13 14:06:28 +0300
commitd4bca00a47fdbe73ece897a539f072d33be51480 (patch)
tree218fd9c4e1bc0871727b377f4b524149abdd7777 /source
parent6b33dafb64f2e846eb4c7518a18f5cc011aed199 (diff)
Cleanup: missing override
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/geometry_component_curve.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/geometry_component_curve.cc b/source/blender/blenkernel/intern/geometry_component_curve.cc
index 97a8129278e..e4417276243 100644
--- a/source/blender/blenkernel/intern/geometry_component_curve.cc
+++ b/source/blender/blenkernel/intern/geometry_component_curve.cc
@@ -578,7 +578,7 @@ template<typename T> class BuiltinPointAttributeProvider : public BuiltinAttribu
{
}
- GVArrayPtr try_get_for_read(const GeometryComponent &component) const
+ GVArrayPtr try_get_for_read(const GeometryComponent &component) const override
{
const CurveEval *curve = get_curve_from_component_for_read(component);
if (curve == nullptr) {
@@ -600,7 +600,7 @@ template<typename T> class BuiltinPointAttributeProvider : public BuiltinAttribu
offsets.last(), std::move(spans), std::move(offsets));
}
- GVMutableArrayPtr try_get_for_write(GeometryComponent &component) const
+ GVMutableArrayPtr try_get_for_write(GeometryComponent &component) const override
{
CurveEval *curve = get_curve_from_component_for_write(component);
if (curve == nullptr) {