diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-06 19:54:22 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-07 08:02:00 +0100 |
commit | d5ca9e2f6fa47b899fb28dc07cd321e1719b36de (patch) | |
tree | 33d39e1299ed9258c4c196b2e0be24fc900251d3 /core/io | |
parent | 9ff17379c24a800dc598bf41a5981fc5d1c54291 (diff) |
Style: Apply clang-format again on all files
Fixes issues introduced by newer clang-format versions or commits
pushed directly without using the clang-format pre-commit hook.
Diffstat (limited to 'core/io')
-rw-r--r-- | core/io/marshalls.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/io/marshalls.cpp b/core/io/marshalls.cpp index 37320d7a77..be49e05be0 100644 --- a/core/io/marshalls.cpp +++ b/core/io/marshalls.cpp @@ -159,7 +159,7 @@ Error decode_variant(Variant &r_variant, const uint8_t *p_buffer, int p_len, int r_variant = str; } break; - // math types + // math types case Variant::VECTOR2: { @@ -959,7 +959,7 @@ Error encode_variant(const Variant &p_variant, uint8_t *r_buffer, int &r_len, bo _encode_string(p_variant, buf, r_len); } break; - // math types + // math types case Variant::VECTOR2: { |