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:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-11-24 17:45:41 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-11-24 17:45:41 +0300
commit1caa267ee6e39303c1782eae895ed9452c142231 (patch)
tree6fff8f6426a98870c8ce200c5cb9e66ffa6ffb45 /source
parent5f7981243e70772cb4ef3b14c55c95d4a3e67b4e (diff)
Depsgraph: Cleanup, indentation
Diffstat (limited to 'source')
-rw-r--r--source/blender/depsgraph/intern/nodes/deg_node_component.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/depsgraph/intern/nodes/deg_node_component.cc b/source/blender/depsgraph/intern/nodes/deg_node_component.cc
index 937b01ce206..010f12409b4 100644
--- a/source/blender/depsgraph/intern/nodes/deg_node_component.cc
+++ b/source/blender/depsgraph/intern/nodes/deg_node_component.cc
@@ -87,8 +87,8 @@ bool ComponentDepsNode::OperationIDKey::operator==(
const OperationIDKey &other) const
{
return (opcode == other.opcode) &&
- (STREQ(name, other.name)) &&
- (name_tag == other.name_tag);
+ (STREQ(name, other.name)) &&
+ (name_tag == other.name_tag);
}
static unsigned int comp_node_hash_key(const void *key_v)