diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-01-15 22:15:47 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-01-16 08:49:52 +0100 |
commit | 2a0ddc1e89ec7b947152c8d0cb132d58f2c00a81 (patch) | |
tree | e7cafdf9c76fd6545124ead4dc5ee17f940f0a10 /core/variant_construct_string.cpp | |
parent | 39114178a0952e9f5efee08e23d73d70f3d8d3db (diff) | |
download | redot-engine-2a0ddc1e89ec7b947152c8d0cb132d58f2c00a81.tar.gz |
Style: Various fixes to play nice with clang-format
Diffstat (limited to 'core/variant_construct_string.cpp')
-rw-r--r-- | core/variant_construct_string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant_construct_string.cpp b/core/variant_construct_string.cpp index 8db756aa79..56aa9891fb 100644 --- a/core/variant_construct_string.cpp +++ b/core/variant_construct_string.cpp @@ -169,7 +169,7 @@ Error VariantConstruct::_get_token(const CharType *p_str, int &idx, int p_len, T case 'r': res=13; break; case '\"': res='\"'; break; case '\\': res='\\'; break; - case '/': res='/'; break; //wtf + case '/': res='/'; break; case 'u': { //hexnumbarh - oct is deprecated |