unify indent style

This commit is contained in:
cubicdaiya
2014-03-16 07:44:44 +09:00
parent ef884caca5
commit cee152670a
6 changed files with 160 additions and 160 deletions
+9 -9
View File
@@ -12,18 +12,18 @@ extern "C" {
#endif
typedef struct global_variable {
int counter;
mrb_value *data;
mrb_value (*getter)(void);
void (*setter)(void);
/* void (*marker)(); */
/* int block_trace; */
/* struct trace_var *trace; */
int counter;
mrb_value *data;
mrb_value (*getter)(void);
void (*setter)(void);
/* void (*marker)(); */
/* int block_trace; */
/* struct trace_var *trace; */
} global_variable;
struct global_entry {
global_variable *var;
mrb_sym id;
global_variable *var;
mrb_sym id;
};
mrb_value mrb_vm_special_get(mrb_state*, mrb_sym);