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:
authorSybren A. Stüvel <sybren@blender.org>2020-12-04 14:02:52 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-12-04 14:02:52 +0300
commit168909d9741393e5a94e964d078a05f303f45c66 (patch)
tree9903cd717a94da99ca414eda6b9fd5058d314edf /source/blender/depsgraph
parent1166110a9d66af9c5a47cee2be591f50fdc445e8 (diff)
Cleanup: Clang-Tidy, modernize-use-override
No functional changes.
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/builder/pipeline_all_objects.cc4
-rw-r--r--source/blender/depsgraph/intern/builder/pipeline_from_ids.cc8
2 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/depsgraph/intern/builder/pipeline_all_objects.cc b/source/blender/depsgraph/intern/builder/pipeline_all_objects.cc
index d02aa16f26b..dd71cc0504e 100644
--- a/source/blender/depsgraph/intern/builder/pipeline_all_objects.cc
+++ b/source/blender/depsgraph/intern/builder/pipeline_all_objects.cc
@@ -36,7 +36,7 @@ class AllObjectsNodeBuilder : public DepsgraphNodeBuilder {
{
}
- virtual bool need_pull_base_into_graph(Base * /*base*/) override
+ bool need_pull_base_into_graph(Base * /*base*/) override
{
return true;
}
@@ -49,7 +49,7 @@ class AllObjectsRelationBuilder : public DepsgraphRelationBuilder {
{
}
- virtual bool need_pull_base_into_graph(Base * /*base*/) override
+ bool need_pull_base_into_graph(Base * /*base*/) override
{
return true;
}
diff --git a/source/blender/depsgraph/intern/builder/pipeline_from_ids.cc b/source/blender/depsgraph/intern/builder/pipeline_from_ids.cc
index 5fd4a0fc3dd..9e62432ea54 100644
--- a/source/blender/depsgraph/intern/builder/pipeline_from_ids.cc
+++ b/source/blender/depsgraph/intern/builder/pipeline_from_ids.cc
@@ -55,7 +55,7 @@ class DepsgraphFromIDsNodeBuilder : public DepsgraphNodeBuilder {
{
}
- virtual bool need_pull_base_into_graph(Base *base) override
+ bool need_pull_base_into_graph(Base *base) override
{
if (!filter_.contains(&base->object->id)) {
return false;
@@ -63,7 +63,7 @@ class DepsgraphFromIDsNodeBuilder : public DepsgraphNodeBuilder {
return DepsgraphNodeBuilder::need_pull_base_into_graph(base);
}
- virtual void build_object_proxy_group(Object *object, bool is_visible) override
+ void build_object_proxy_group(Object *object, bool is_visible) override
{
if (object->proxy_group == nullptr) {
return;
@@ -88,7 +88,7 @@ class DepsgraphFromIDsRelationBuilder : public DepsgraphRelationBuilder {
{
}
- virtual bool need_pull_base_into_graph(Base *base) override
+ bool need_pull_base_into_graph(Base *base) override
{
if (!filter_.contains(&base->object->id)) {
return false;
@@ -96,7 +96,7 @@ class DepsgraphFromIDsRelationBuilder : public DepsgraphRelationBuilder {
return DepsgraphRelationBuilder::need_pull_base_into_graph(base);
}
- virtual void build_object_proxy_group(Object *object) override
+ void build_object_proxy_group(Object *object) override
{
if (object->proxy_group == nullptr) {
return;