Merge pull request #5334 from SaracenOne/explict_return_fix

Make return value explicit
This commit is contained in:
Juan Linietsky 2016-06-21 09:05:33 -03:00 committed by GitHub
commit 2009619166

View file

@ -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() {