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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-02-28 20:39:55 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-02-28 20:41:37 +0300
commitf864cbd705e5773c4dc8a698bae0bee86ba62d5c (patch)
tree57d696391ad4500cfc549d3a3ecfe6db5946f579 /source/blender/depsgraph/intern/builder/deg_builder.h
parentd3294fd93f5a5cc6536d688365efddffca78e870 (diff)
Cleanup: Snake style in depsgraph
While it's kind of common to use camel case in C++ this is not currently agreed style for C++ in Blender. Got confused by working on other areas with 3rd party libraries.
Diffstat (limited to 'source/blender/depsgraph/intern/builder/deg_builder.h')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder.h b/source/blender/depsgraph/intern/builder/deg_builder.h
index e64ae98c6ce..7c9f496ae7e 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder.h
+++ b/source/blender/depsgraph/intern/builder/deg_builder.h
@@ -32,7 +32,7 @@ struct Depsgraph;
class DepsgraphBuilder {
public:
- bool needPullBaseIntoGraph(struct Base *base);
+ bool need_pull_base_into_graph(struct Base *base);
protected:
DepsgraphBuilder(Main *bmain, Depsgraph *graph);