mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
compile.c: no semicolon
* compile.c (ADD_TRACE): putting a semicolon at the last of a macro let do/while make no sense. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fd636ef99b
commit
eb56c1084d
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ r_value(VALUE value)
|
|||
if (iseq->compile_data->option->trace_instruction) { \
|
||||
ADD_INSN1((seq), (line), trace, INT2FIX(event)); \
|
||||
} \
|
||||
}while(0);
|
||||
} while (0)
|
||||
|
||||
/* add label */
|
||||
#define ADD_LABEL(seq, label) \
|
||||
|
|
Loading…
Reference in a new issue