Fix tabbing
[satune.git] / src / AST / function.h
index e22ec7524bcb9194418082da8d7f25e4b940141d..50a59ec081c504b849fa1ce0349c0e6e9f35c36b 100644 (file)
@@ -5,24 +5,24 @@
 #include "ops.h"
 #include "structs.h"
 
-
 #define GETFUNCTIONTYPE(o) (((Function*)o)->type)
 
-struct Function{
-    FunctionType type;
+struct Function {
+       FunctionType type;
 };
 
 struct FunctionOperator {
-    Function base;
-    ArithOp op;
-    VectorSet* domains;
-    Set * range;
-    OverFlowBehavior overflowbehavior;
+       Function base;
+       ArithOp op;
+       uint numDomains;
+       Set ** domains;
+       Set * range;
+       OverFlowBehavior overflowbehavior;
 };
 
-struct FunctionTable{
-    Function base;
-    Table* table;
+struct FunctionTable {
+       Function base;
+       Table* table;
 };
 
 Function* allocFunctionOperator( ArithOp op, Set ** domain, uint numDomain, Set * range,OverFlowBehavior overflowbehavior);