From 489bb32a9848baf04c336c03c08a16c0c445847e Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Thu, 12 Feb 2009 09:48:50 -0600 Subject: [PATCH] Fix potential load order issue with alien.complex; it used a slot defined in alien.structs but didn't reference that file by name --- basis/alien/complex/complex.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/alien/complex/complex.factor b/basis/alien/complex/complex.factor index 079ad57aa5..c80ead73f0 100644 --- a/basis/alien/complex/complex.factor +++ b/basis/alien/complex/complex.factor @@ -1,6 +1,6 @@ ! Copyright (C) 2009 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license. -USING: alien.c-types alien.complex.functor accessors +USING: alien.c-types alien.structs alien.complex.functor accessors sequences kernel ; IN: alien.complex