Change 33368 by [EMAIL PROTECTED] on 2008/02/25 11:47:03
Two break; statements that aren't (yet) needed, but may trip someone up
in the future.
Affected files ...
... //depot/perl/op.c#994 edit
Differences ...
==== //depot/perl/op.c#994 (text) ====
Index: perl/op.c
--- perl/op.c#993~33364~ 2008-02-25 00:02:50.000000000 -0800
+++ perl/op.c 2008-02-25 03:47:03.000000000 -0800
@@ -911,6 +911,7 @@
case OP_SORT:
if (ckWARN(WARN_VOID))
Perl_warner(aTHX_ packWARN(WARN_VOID), "Useless use of sort in
scalar context");
+ break;
}
return o;
}
@@ -2465,6 +2466,7 @@
/* XXX what about the numeric ops? */
if (PL_hints & HINT_LOCALE)
goto nope;
+ break;
}
if (PL_parser && PL_parser->error_count)
End of Patch.