From: Chip Salzenberg <chip@perl.com>
Date: Sat, 29 Mar 1997 23:48:07 +0000 (+1200)
Subject: Don't use a completely empty macro parameter
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c9d716f75179fb7a413359cd6453141dfe552e82;p=p5sagit%2Fp5-mst-13.2.git

Don't use a completely empty macro parameter
---

diff --git a/sv.h b/sv.h
index 39dc40e..cf18061 100644
--- a/sv.h
+++ b/sv.h
@@ -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))