From 912afb129ff1f220a0089dd19d37158736eb3f64 Mon Sep 17 00:00:00 2001 From: Saracen Date: Tue, 21 Jun 2016 12:40:56 +0100 Subject: [PATCH] Make return type explicit. --- scene/main/node.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/main/node.cpp b/scene/main/node.cpp index edc97cbf464..11b400d4a95 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() {