more comments and cosmetic fixes

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5789 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2004-03-23 01:07:45 +00:00
commit 557c66c367
5 changed files with 12 additions and 18 deletions

View file

@ -102,24 +102,24 @@ macro(arg1, arg2)
#define x 1
%enddef
%define %_apply_if(x,macro)
%define %_evalif(x,macro)
#if x == 1
macro
#endif
%enddef
%define %_apply_if2(x,y,macro)
%define %_evalif_2(x,y,macro)
#if x == 1 && #y == 1
macro
#endif
%enddef
%define %apply_if(x,...)
%_apply_if(SWIG_arg(x),SWIG_arg(__VA_ARGS__))
%define %evalif(x,...)
%_evalif(SWIG_arg(x),SWIG_arg(__VA_ARGS__))
%enddef
%define %apply_if2(x,y,...)
%_apply_if2(SWIG_arg(x),SWIG_arg(y),SWIG_arg(__VA_ARGS__))
%define %evalif_2(x,y,...)
%_evalif_2(SWIG_arg(x),SWIG_arg(y),SWIG_arg(__VA_ARGS__))
%enddef
#define %swig_equal_type(...) %swig_mark_flag(SWIG_EqualType(__VA_ARGS__))