Update of /cvsroot/module-build/ExtUtils-ParseXS/lib/ExtUtils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18191/lib/ExtUtils
Modified Files:
ParseXS.pm
Log Message:
Squash a warning
Index: ParseXS.pm
===================================================================
RCS file: /cvsroot/module-build/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- ParseXS.pm 10 Oct 2005 15:04:04 -0000 1.39
+++ ParseXS.pm 5 Jan 2006 19:54:11 -0000 1.40
@@ -456,7 +456,7 @@
\b ( \w+ | length\( \s*\w+\s* \) )
\s* $ /x);
next unless defined($pre) && length($pre);
- my $out_type;
+ my $out_type = '';
my $inout_var;
if ($process_inout and s/^(IN|IN_OUTLIST|OUTLIST|OUT|IN_OUT)\s+//) {
my $type = $1;
|