diff options
author | Chip Salzenberg <chip@perl.com> | 1997-03-30 11:48:07 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-04-01 12:01:35 +1200 |
commit | c9d716f75179fb7a413359cd6453141dfe552e82 (patch) | |
tree | 15cefbe5466fc54e3bf1367e02073856f2fd54bd /sv.h | |
parent | d574b85ef38b533c29517c911f5b03db91196ab8 (diff) | |
download | perl-c9d716f75179fb7a413359cd6453141dfe552e82.tar.gz |
Don't use a completely empty macro parameter
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -572,9 +572,9 @@ SV *newRV_noinc _((SV *)); } #define SvSetSV(dst,src) \ - SvSetSV_and(dst,src,) + SvSetSV_and(dst,src,/*nothing*/;) #define SvSetSV_nosteal(dst,src) \ - SvSetSV_nosteal_and(dst,src,) + SvSetSV_nosteal_and(dst,src,/*nothing*/;) #define SvSetMagicSV(dst,src) \ SvSetSV_and(dst,src,SvSETMAGIC(dst)) |