edits
[satune.git] / src / AST / element.h
index 1e7b1f2899aaba7883573adab92c09b923ad5d79..5259c0907d54ad2104c13e074b1f82e73b9498a2 100644 (file)
@@ -26,7 +26,7 @@ public:
 class ElementSet : public Element {
 public:
        ElementSet(ASTNodeType type, Set *s);
-        virtual ~ElementSet(){}
+       virtual ~ElementSet() {}
        ElementSet(Set *s);
        virtual Element *clone(CSolver *solver, CloneMap *map);
        virtual void serialize(Serializer *serializer);
@@ -41,7 +41,7 @@ protected:
 class ElementConst : public ElementSet {
 public:
        ElementConst(uint64_t value, Set *_set);
-        virtual ~ElementConst(){}
+       virtual ~ElementConst() {}
        uint64_t value;
        virtual void serialize(Serializer *serializer);
        virtual void print();
@@ -51,7 +51,7 @@ public:
 
 class ElementFunction : public Element {
 public:
-        virtual ~ElementFunction(){}
+       virtual ~ElementFunction() {}
        ElementFunction(Function *function, Element **array, uint numArrays, BooleanEdge overflowstatus);
        Array<Element *> inputs;
        BooleanEdge overflowstatus;