Author: bernhard
Date: Sat Jan 14 05:29:48 2006
New Revision: 11177

Modified:
   trunk/lib/Parrot/Distribution.pm
   trunk/lib/Parrot/Docs/Section/BigNum.pm
   trunk/src/bignum.c
   trunk/src/bignum.h
   trunk/t/perl/cppcomments.t
Log:
Remove remnants of the 'src/types' directory.


Modified: trunk/lib/Parrot/Distribution.pm
==============================================================================
--- trunk/lib/Parrot/Distribution.pm    (original)
+++ trunk/lib/Parrot/Distribution.pm    Sat Jan 14 05:29:48 2006
@@ -102,7 +102,6 @@ sub c_source_file_directories
         $self->directory_with_name('src/io'),
         $self->directory_with_name('src/ops'),
         $self->directory_with_name('src/packfile'),
-        $self->directory_with_name('src/types'),
     ;
 }
 

Modified: trunk/lib/Parrot/Docs/Section/BigNum.pm
==============================================================================
--- trunk/lib/Parrot/Docs/Section/BigNum.pm     (original)
+++ trunk/lib/Parrot/Docs/Section/BigNum.pm     Sat Jan 14 05:29:48 2006
@@ -1,4 +1,4 @@
-# Copyright: 2004 The Perl Foundation.  All Rights Reserved.
+# Copyright: 2004-2006 The Perl Foundation.  All Rights Reserved.
 # $Id$
 
 =head1 NAME
@@ -39,10 +39,10 @@ sub new
        return $self->SUPER::new(
                'Big Number Arithmetic', 'bignum.html', '',
                $self->new_group('Decimal Arithmetic', '',
-                       $self->new_item('', 'src/types/bignum.c', 
'src/types/bignum.h'),
+                       $self->new_item('', 'src/bignum.c', 'src/bignum.h'),
                ),
                $self->new_group('Testing', '',
-                       $self->new_item('', 'src/types/bignum_atest.pl', 
'src/types/bignum_test.pl'),
+                       $self->new_item('', 't/pmc/bignum.t' ),
                ),
        );
 }

Modified: trunk/src/bignum.c
==============================================================================
--- trunk/src/bignum.c  (original)
+++ trunk/src/bignum.c  Sat Jan 14 05:29:48 2006
@@ -4,7 +4,7 @@ $Id$
 
 =head1 NAME
 
-types/bignum.c - A decimal arithmetic library for Perl and Parrot
+src/bignum.c - A decimal arithmetic library for Perl and Parrot
 
 =head1 DESCRIPTION
 

Modified: trunk/src/bignum.h
==============================================================================
--- trunk/src/bignum.h  (original)
+++ trunk/src/bignum.h  Sat Jan 14 05:29:48 2006
@@ -4,7 +4,7 @@ $Id$
 
 =head1 NAME
 
-types/bignum.h - Infinite precision bcd for parrot
+src/bignum.h - Infinite precision bcd for parrot
 
 =head1 DESCRIPTION
 

Modified: trunk/t/perl/cppcomments.t
==============================================================================
--- trunk/t/perl/cppcomments.t  (original)
+++ trunk/t/perl/cppcomments.t  Sat Jan 14 05:29:48 2006
@@ -1,5 +1,5 @@
 #! perl
-# Copyright: 2001-2005 The Perl Foundation.  All Rights Reserved.
+# Copyright: 2001-2006 The Perl Foundation.  All Rights Reserved.
 # $Id$
 
 use strict;
@@ -41,8 +41,6 @@ my @globs = qw(
     src/ops/*.ops
     src/ops/*.c
     src/packfile/*.c
-    src/types/*.c
-    src/types/*.h
 );
 
 my @comments;
@@ -63,5 +61,5 @@ foreach my $glob ( @globs ) {
     }
 }
 
-ok ( [EMAIL PROTECTED], 'C++ style comments')
+ok( ! scalar(@comments), 'C++ style comments')
 or diag( "C++ style comments found:[EMAIL PROTECTED]" );

Reply via email to