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:
authorBastien Montagne <bastien@blender.org>2020-06-02 11:32:21 +0300
committerBastien Montagne <bastien@blender.org>2020-06-02 11:32:21 +0300
commit6aef27602ab415c5609230f1d3516debb0c3e4ba (patch)
tree3e0a150ae0cb0ad7eb0c367351d85744cc454e77 /source
parent428c0f9ad57315cb23a9b50ada547654f34b9b5d (diff)
Cleanup: use C++'s nullptr instead of our own C NULL define, in C++ code.
Diffstat (limited to 'source')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_relations.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
index d9bb5d0aa9b..2bd8ac7d84d 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
@@ -2867,7 +2867,7 @@ void DepsgraphRelationBuilder::build_driver_relations(IDNode *id_node)
DriverGroupMap driver_groups;
LISTBASE_FOREACH (FCurve *, fcu, &adt->drivers) {
- if (fcu->rna_path == NULL) {
+ if (fcu->rna_path == nullptr) {
continue;
}
// Get the RNA path except the part after the last dot.