diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-10 01:27:02 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-10 01:27:02 +0100 |
commit | a8454114544b1a4f93ea6c6a217a19494ffc852a (patch) | |
tree | 8f00e1c1b0a110f052e398cd815d794992af83d1 /core/io/json.h | |
parent | 7cb6e6b72375fa384c509651657aeba3f67110be (diff) | |
download | redot-engine-a8454114544b1a4f93ea6c6a217a19494ffc852a.tar.gz |
Style: Re-apply clang-format over recent invalid additions
Diffstat (limited to 'core/io/json.h')
-rw-r--r-- | core/io/json.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/io/json.h b/core/io/json.h index 5e1a89f069..fbb7875c7c 100644 --- a/core/io/json.h +++ b/core/io/json.h @@ -64,7 +64,7 @@ class JSON { static const char *tk_name[TK_MAX]; - static String _print_var(const Variant &p_var, const String& p_indent, int p_cur_indent, bool p_sort_keys); + static String _print_var(const Variant &p_var, const String &p_indent, int p_cur_indent, bool p_sort_keys); static Error _get_token(const CharType *p_str, int &index, int p_len, Token &r_token, int &line, String &r_err_str); static Error _parse_value(Variant &value, Token &token, const CharType *p_str, int &index, int p_len, int &line, String &r_err_str); @@ -72,7 +72,7 @@ class JSON { static Error _parse_object(Dictionary &object, const CharType *p_str, int &index, int p_len, int &line, String &r_err_str); public: - static String print(const Variant &p_var, const String& p_indent = "", bool p_sort_keys = true); + static String print(const Variant &p_var, const String &p_indent = "", bool p_sort_keys = true); static Error parse(const String &p_json, Variant &r_ret, String &r_err_str, int &r_err_line); }; |