[svn:parrot] r42009 - branches/auto_libjit/config/gen

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Thu Oct 22 02:04:42 UTC 2009


Author: jkeenan
Date: Thu Oct 22 02:04:40 2009
New Revision: 42009
URL: https://trac.parrot.org/parrot/changeset/42009

Log:
Conform to codingstd:  no cuddled 'else'.

Modified:
   branches/auto_libjit/config/gen/libjit.pm

Modified: branches/auto_libjit/config/gen/libjit.pm
==============================================================================
--- branches/auto_libjit/config/gen/libjit.pm	Thu Oct 22 01:59:51 2009	(r42008)
+++ branches/auto_libjit/config/gen/libjit.pm	Thu Oct 22 02:04:40 2009	(r42009)
@@ -201,7 +201,8 @@
     my $type = shift;
     if ($type !~ /[A-Z]/) {
         return "jit_type_$_";
-    } else {
+    }
+    else {
         return "JIT_TYPE_$_";
     }
 }


More information about the parrot-commits mailing list