diff options
author | Saracen <SaracenOne@gmail.com> | 2016-06-21 12:40:56 +0100 |
---|---|---|
committer | Saracen <SaracenOne@gmail.com> | 2016-06-21 12:41:28 +0100 |
commit | 912afb129ff1f220a0089dd19d37158736eb3f64 (patch) | |
tree | 672c4f7b3b262b1c741aa13e15526e38bea0fc63 /scene/main/node.cpp | |
parent | 67a29bab74837947fc05a889e573efd86457a88e (diff) |
Make return type explicit.
Diffstat (limited to 'scene/main/node.cpp')
-rw-r--r-- | scene/main/node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp index edc97cbf46..11b400d4a9 100644 --- a/scene/main/node.cpp +++ b/scene/main/node.cpp @@ -2082,7 +2082,7 @@ void Node::update_configuration_warning() { } bool Node::is_owned_by_parent() const { - data.parent_owned; + return data.parent_owned; } void Node::_bind_methods() { |