mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/dl/cfunc.c: parenthesize macro arguments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30843 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c750f945c6
commit
698960439d
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Feb 11 23:17:04 2011 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* ext/dl/cfunc.c: parenthesize macro arguments.
|
||||
|
||||
Fri Feb 11 21:41:53 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* bin/testrb, test/runner.rb, lib/test/unit.rb: improve backward
|
||||
|
|
|
@ -298,10 +298,10 @@ rb_dlcfunc_inspect(VALUE self)
|
|||
|
||||
|
||||
# define DECL_FUNC_CDECL(f,ret,args,val) \
|
||||
ret (FUNC_CDECL(*f))(args) = (ret (FUNC_CDECL(*))(args))(VALUE)(val)
|
||||
ret (FUNC_CDECL(*(f)))(args) = (ret (FUNC_CDECL(*))(args))(VALUE)(val)
|
||||
#ifdef FUNC_STDCALL
|
||||
# define DECL_FUNC_STDCALL(f,ret,args,val) \
|
||||
ret (FUNC_STDCALL(*f))(args) = (ret (FUNC_STDCALL(*))(args))(VALUE)(val)
|
||||
ret (FUNC_STDCALL(*(f)))(args) = (ret (FUNC_STDCALL(*))(args))(VALUE)(val)
|
||||
#endif
|
||||
|
||||
#define CALL_CASE switch( RARRAY_LEN(ary) ){ \
|
||||
|
|
Loading…
Reference in a new issue