[svn:parrot] r48060 - branches/html_cleanup/tools/docs

mikehh at svn.parrot.org mikehh at svn.parrot.org
Fri Jul 9 07:50:29 UTC 2010


Author: mikehh
Date: Fri Jul  9 07:50:28 2010
New Revision: 48060
URL: https://trac.parrot.org/parrot/changeset/48060

Log:
perlcritic does not like code before use warnings

Modified:
   branches/html_cleanup/tools/docs/make_html_docs.pl

Modified: branches/html_cleanup/tools/docs/make_html_docs.pl
==============================================================================
--- branches/html_cleanup/tools/docs/make_html_docs.pl	Fri Jul  9 02:07:35 2010	(r48059)
+++ branches/html_cleanup/tools/docs/make_html_docs.pl	Fri Jul  9 07:50:28 2010	(r48060)
@@ -18,11 +18,13 @@
 
 use 5.12.0;
 
+use strict;
+use warnings;
+
 # as long as we have a separate docs/ makefile, this will be run from
 # inside it. So jump up a dir to catch all the files.
 chdir '..';
 
-use warnings;
 use lib 'lib';
 use Fatal qw/open close/;
 


More information about the parrot-commits mailing list