Changes
[satune.git] / src / AST / function.h
index 82379f782d6db72c06ef53f6783237e6841323b2..65a4b29fe3607bc75774808ac65ce4e990b06685 100644 (file)
@@ -4,11 +4,12 @@
 #include "mymemory.h"
 #include "ops.h"
 #include "structs.h"
+
 struct Function {
-    enum ArithOp op;
-    VectorSet* domains; 
-    Set * range;
-    enum OverFlowBehavior overflowbehavior;
-    Table* table;
+       ArithOp op;
+       VectorSet* domains;
+       Set * range;
+       OverFlowBehavior overflowbehavior;
+       Table* table;
 };
 #endif