diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-14 16:41:43 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-14 21:57:34 +0200 |
commit | 0ee0fa42e6639b6fa474b7cf6afc6b1a78142185 (patch) | |
tree | 198d4ff7665d89307f6ca2469fa38620a9eb1672 /editor/dictionary_property_edit.cpp | |
parent | 07bc4e2f96f8f47991339654ff4ab16acc19d44f (diff) |
Style: Enforce braces around if blocks and loops
Using clang-tidy's `readability-braces-around-statements`.
https://clang.llvm.org/extra/clang-tidy/checks/readability-braces-around-statements.html
Diffstat (limited to 'editor/dictionary_property_edit.cpp')
-rw-r--r-- | editor/dictionary_property_edit.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/editor/dictionary_property_edit.cpp b/editor/dictionary_property_edit.cpp index c92f62cf58..276cd12ded 100644 --- a/editor/dictionary_property_edit.cpp +++ b/editor/dictionary_property_edit.cpp @@ -47,19 +47,22 @@ void DictionaryPropertyEdit::_set_value(const Variant &p_key, const Variant &p_v Dictionary dict = get_dictionary(); dict[p_key] = p_value; Object *o = ObjectDB::get_instance(obj); - if (!o) + if (!o) { return; + } o->set(property, dict); } Variant DictionaryPropertyEdit::get_dictionary() const { Object *o = ObjectDB::get_instance(obj); - if (!o) + if (!o) { return Dictionary(); + } Variant dict = o->get(property); - if (dict.get_type() != Variant::DICTIONARY) + if (dict.get_type() != Variant::DICTIONARY) { return Dictionary(); + } return dict; } @@ -89,8 +92,9 @@ void DictionaryPropertyEdit::edit(Object *p_obj, const StringName &p_prop) { Node *DictionaryPropertyEdit::get_node() { Object *o = ObjectDB::get_instance(obj); - if (!o) + if (!o) { return nullptr; + } return cast_to<Node>(o); } |