Unify else clause style

This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-04-03 16:56:27 +09:00
parent fbf4089d2f
commit 77331d127b
17 changed files with 86 additions and 43 deletions
+2 -1
View File
@@ -44,7 +44,8 @@ struct RString {
#define RSTR_SET_LEN(s, n) do {\
if (RSTR_EMBED_P(s)) {\
RSTR_SET_EMBED_LEN((s),(n));\
} else {\
}\
else {\
s->as.heap.len = (mrb_int)(n);\
}\
} while (0)