Fix tabbing
[satune.git] / src / AST / element.h
index 986e380e0f03c9eb83ae1f299d4e3b95dc8abbcd..da9b994e7df39219659b087c2631d9d7ff39c99b 100644 (file)
@@ -9,20 +9,20 @@
 
 //FIXME:TALK ABOUT ELEMENT
 struct Element {
-       ElementType type;
+       ElementType type;
 };
 
 struct ElementSet {
-    Element base;
-    Set * set;
-    ElementEncoding * encoding;
+       Element base;
+       Set * set;
+       ElementEncoding * encoding;
 };
 
-struct ElementFunction{
-    Element base;
-    Function * function;
-    VectorElement* Elements;
-    Boolean * overflowstatus;
+struct ElementFunction {
+       Element base;
+       Function * function;
+       VectorElement* Elements;
+       Boolean * overflowstatus;
 };
 
 Element * allocElementSet(Set *s);