[svn:parrot] r44430 - trunk/compilers/ncigen/t/NCIGENAST

mikehh at svn.parrot.org mikehh at svn.parrot.org
Wed Feb 24 00:56:11 UTC 2010


Author: mikehh
Date: Wed Feb 24 00:56:10 2010
New Revision: 44430
URL: https://trac.parrot.org/parrot/changeset/44430

Log:
fix perlcritic failure - add use strict/use warnings

Modified:
   trunk/compilers/ncigen/t/NCIGENAST/struct_00.t
   trunk/compilers/ncigen/t/NCIGENAST/typedef_00.t

Modified: trunk/compilers/ncigen/t/NCIGENAST/struct_00.t
==============================================================================
--- trunk/compilers/ncigen/t/NCIGENAST/struct_00.t	Wed Feb 24 00:40:56 2010	(r44429)
+++ trunk/compilers/ncigen/t/NCIGENAST/struct_00.t	Wed Feb 24 00:56:10 2010	(r44430)
@@ -2,6 +2,9 @@
 # Copyright (C) 2008-2010, Parrot Foundation.
 # $Id$
 
+use strict;
+use warnings;
+
 use lib ('./lib', '../../lib');
 use Parrot::Test::NCIGENAST;
 

Modified: trunk/compilers/ncigen/t/NCIGENAST/typedef_00.t
==============================================================================
--- trunk/compilers/ncigen/t/NCIGENAST/typedef_00.t	Wed Feb 24 00:40:56 2010	(r44429)
+++ trunk/compilers/ncigen/t/NCIGENAST/typedef_00.t	Wed Feb 24 00:56:10 2010	(r44430)
@@ -2,6 +2,9 @@
 # Copyright (C) 2008-2010, Parrot Foundation.
 # $Id$
 
+use strict;
+use warnings;
+
 use lib ('./lib', '../../lib');
 use Parrot::Test::NCIGENAST;
 


More information about the parrot-commits mailing list