]> gitweb.factorcode.org Git - factor.git/commitdiff
alien.enums: cleanup using.
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 30 Jun 2014 16:09:46 +0000 (09:09 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 30 Jun 2014 16:09:46 +0000 (09:09 -0700)
basis/alien/enums/enums.factor

index cd4225c4ab043f82651dbb089c92d221258ecfa6..2056a5ad52c1730121e804be2030ecc1ff3e8f08 100644 (file)
@@ -1,7 +1,7 @@
 ! (c)2010 Joe Groff, Erik Charlebois bsd license
-USING: accessors alien.c-types arrays combinators delegate fry
-generic.parser kernel macros math parser sequences words words.symbol
-classes.singleton assocs ;
+USING: accessors alien.c-types arrays assocs classes.singleton
+combinators delegate fry kernel macros math parser sequences
+words ;
 IN: alien.enums
 
 <PRIVATE
@@ -52,6 +52,6 @@ PRIVATE>
 : define-enum ( word base-type members -- )
     [ (define-enum) ]
     [ [ define-enum-value ] assoc-each ] bi ;
-    
+
 PREDICATE: enum-c-type-word < c-type-word
     "c-type" word-prop enum-c-type? ;