[svn:parrot] r42489 - in trunk: . include/parrot

chromatic at svn.parrot.org chromatic at svn.parrot.org
Fri Nov 13 21:06:39 UTC 2009


Author: chromatic
Date: Fri Nov 13 21:06:39 2009
New Revision: 42489
URL: https://trac.parrot.org/parrot/changeset/42489

Log:
[include] Removed now unnecessary parrot/slice.h header.

Deleted:
   trunk/include/parrot/slice.h
Modified:
   trunk/MANIFEST
   trunk/include/parrot/parrot.h

Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST	Fri Nov 13 21:06:33 2009	(r42488)
+++ trunk/MANIFEST	Fri Nov 13 21:06:39 2009	(r42489)
@@ -1061,7 +1061,6 @@
 include/parrot/scheduler.h                                  [main]include
 include/parrot/scheduler_private.h                          [main]include
 include/parrot/settings.h                                   [main]include
-include/parrot/slice.h                                      [main]include
 include/parrot/stat.h                                       [main]include
 include/parrot/string.h                                     [main]include
 include/parrot/string_funcs.h                               [main]include

Modified: trunk/include/parrot/parrot.h
==============================================================================
--- trunk/include/parrot/parrot.h	Fri Nov 13 21:06:33 2009	(r42488)
+++ trunk/include/parrot/parrot.h	Fri Nov 13 21:06:39 2009	(r42489)
@@ -294,7 +294,6 @@
 #include "parrot/library.h"
 #include "parrot/global.h"
 #include "parrot/stat.h"
-#include "parrot/slice.h"
 #include "parrot/hll.h"
 #include "parrot/pbcversion.h"
 

Deleted: trunk/include/parrot/slice.h
==============================================================================
--- trunk/include/parrot/slice.h	Fri Nov 13 21:06:39 2009	(r42488)
+++ /dev/null	00:00:00 1970	(deleted)
@@ -1,40 +0,0 @@
-/* slice.h
- *  Copyright (C) 2001-2008, Parrot Foundation.
- *  SVN Info
- *     $Id$
- *  Overview:
- *     This is the api header for slices.
- *  Data Structure and Algorithms:
- *  History:
- *  Notes:
- *  References:
- */
-
-#ifndef PARROT_SLICE_H_GUARD
-#define PARROT_SLICE_H_GUARD
-
-#ifdef PARROT_IN_CORE
-
-typedef struct RUnion {
-    INTVAL i;
-    STRING *s;
-} RUnion;
-
-typedef struct _parrot_range_t {
-    int type;                      /* enum_type_INTVAL or STRING */
-    RUnion start;                  /* start of this range */
-    RUnion end;                    /* end of this range */
-    RUnion step;                   /* step of this range */
-    RUnion cur;                    /* current value */
-    struct _parrot_range_t *next;  /* next in chain */
-} parrot_range_t;
-
-#endif /* PARROT_IN_CORE */
-#endif /* PARROT_SLICE_H_GUARD */
-
-/*
- * Local variables:
- *   c-file-style: "parrot"
- * End:
- * vim: expandtab shiftwidth=4:
- */


More information about the parrot-commits mailing list