summaryrefslogtreecommitdiffhomepage
path: root/src/variable.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-02-28 23:35:04 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2013-02-28 23:35:04 -0800
commitc0e1fc935c301dd86705d754bcf8493c5200eaf9 (patch)
tree0379151d9378a1cfb3c59c1ae829da2a1a314e6a /src/variable.c
parent778dbddb6e2c4a18e4f6a157593c5b1da4f89a58 (diff)
parent0b7b3f9d7fe7402cb09d83ceac59905d11d4d956 (diff)
downloadmruby-c0e1fc935c301dd86705d754bcf8493c5200eaf9.tar.gz
mruby-c0e1fc935c301dd86705d754bcf8493c5200eaf9.zip
Merge pull request #918 from monaka/pr-remove-unused-struct-and-more
Remove unused struct and more
Diffstat (limited to 'src/variable.c')
-rw-r--r--src/variable.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/variable.c b/src/variable.c
index a2dca3cc6..5f657e3d7 100644
--- a/src/variable.c
+++ b/src/variable.c
@@ -20,8 +20,7 @@ typedef int (iv_foreach_func)(mrb_state*,mrb_sym,mrb_value,void*);
#define MRB_SEGMENT_SIZE 4
#endif
-typedef struct segment
-{
+typedef struct segment {
mrb_sym key[MRB_SEGMENT_SIZE];
mrb_value val[MRB_SEGMENT_SIZE];
struct segment *next;