From 29b44e4e428a4b036ba6ffd3a79c65c7da24324e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 24 Jun 2009 04:48:52 +0000 Subject: Forward declare CEnv later. git-svn-id: http://svn.drobilla.net/resp/tuplr@147 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- tuplr.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tuplr.hpp b/tuplr.hpp index 3df6c9f..3c6bc81 100644 --- a/tuplr.hpp +++ b/tuplr.hpp @@ -138,7 +138,6 @@ typedef void* CFunction; ///< Compiled function (opaque) ***************************************************************************/ struct Object; ///< Object (AST nodes and runtime data) -struct CEnv; ///< Compile-Time Environment struct GC { enum Tag { @@ -183,10 +182,11 @@ struct Object { struct Constraint; ///< Type Constraint struct TEnv; ///< Type-Time Environment -struct Constraints; -struct Subst; -struct AST; +struct Constraints; ///< Type Constraints +struct Subst; ///< Type substitutions +struct CEnv; ///< Compile-Time Environment +struct AST; extern ostream& operator<<(ostream& out, const AST* ast); /// Base class for all AST nodes -- cgit v1.2.1