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