]> gitweb.factorcode.org Git - factor.git/commitdiff
specialized-arrays: fill in missing manifest bits
authorJoe Groff <arcata@gmail.com>
Sat, 15 Oct 2011 06:23:42 +0000 (23:23 -0700)
committerJoe Groff <arcata@gmail.com>
Tue, 18 Oct 2011 04:23:10 +0000 (21:23 -0700)
basis/specialized-arrays/specialized-arrays-tests.factor

index 01fac4cc47663afed1df63f0b17d13e58b41a7d1..916411472548c95638800af65d1d9c10641d395f 100644 (file)
@@ -5,13 +5,13 @@ compiler.tree.debugger math libc destructors sequences.private
 multiline eval words vocabs namespaces assocs prettyprint
 alien.data math.vectors definitions compiler.test ;
 FROM: specialized-arrays.private => specialized-array-vocab ;
-FROM: alien.c-types => int float bool char float ulonglong ushort uint
+FROM: alien.c-types => int float bool uchar char float ulonglong ushort uint
 heap-size ;
 FROM: alien.data => little-endian? ;
 IN: specialized-arrays.tests
 
 SPECIALIZED-ARRAY: int
-SPECIALIZED-ARRAYS: bool ushort char uint float ulonglong ;
+SPECIALIZED-ARRAYS: bool uchar ushort char uint float ulonglong ;
 
 [ t ] [ { 1 2 3 } int >c-array int-array? ] unit-test