Fix tabbing
[satune.git] / src / AST / function.h
index 3f2a1a9310f2dd077cce62762535455e25c09edb..50a59ec081c504b849fa1ce0349c0e6e9f35c36b 100644 (file)
@@ -7,21 +7,22 @@
 
 #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);