mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
remove useless semicolons
This commit is contained in:
parent
a75ab110df
commit
fc8b68a52a
1 changed files with 2 additions and 2 deletions
|
@ -80,8 +80,8 @@ rb_vm_lock_leave(unsigned int *lev, const char *file, int line)
|
|||
#define RB_VM_LOCK() rb_vm_lock(__FILE__, __LINE__)
|
||||
#define RB_VM_UNLOCK() rb_vm_unlock(__FILE__, __LINE__)
|
||||
|
||||
#define RB_VM_LOCK_ENTER_LEV(levp) rb_vm_lock_enter(levp, __FILE__, __LINE__);
|
||||
#define RB_VM_LOCK_LEAVE_LEV(levp) rb_vm_lock_leave(levp, __FILE__, __LINE__);
|
||||
#define RB_VM_LOCK_ENTER_LEV(levp) rb_vm_lock_enter(levp, __FILE__, __LINE__)
|
||||
#define RB_VM_LOCK_LEAVE_LEV(levp) rb_vm_lock_leave(levp, __FILE__, __LINE__)
|
||||
|
||||
#define RB_VM_LOCK_ENTER() { unsigned int _lev; RB_VM_LOCK_ENTER_LEV(&_lev);
|
||||
#define RB_VM_LOCK_LEAVE() RB_VM_LOCK_LEAVE_LEV(&_lev); }
|
||||
|
|
Loading…
Reference in a new issue