* 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
@ -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>
|
Fri Feb 11 21:41:53 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* bin/testrb, test/runner.rb, lib/test/unit.rb: improve backward
|
* 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) \
|
# 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
|
#ifdef FUNC_STDCALL
|
||||||
# define DECL_FUNC_STDCALL(f,ret,args,val) \
|
# 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
|
#endif
|
||||||
|
|
||||||
#define CALL_CASE switch( RARRAY_LEN(ary) ){ \
|
#define CALL_CASE switch( RARRAY_LEN(ary) ){ \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user