Run tabbing pass
[satune.git] / src / AST / set.h
index 9303fa843cc059d6bb6348641b7b50b1bde8e431..bb246b6f690d7e1c0542bb869f6f2b2e7780a441 100644 (file)
@@ -13,7 +13,7 @@
 #include "mymemory.h"
 
 class Set {
- public:
+public:
        Set(VarType t);
        Set(VarType t, uint64_t *elements, uint num);
        Set(VarType t, uint64_t lowrange, uint64_t highrange);
@@ -21,7 +21,7 @@ class Set {
        bool exists(uint64_t element);
        uint getSize();
        uint64_t getElement(uint index);
-       
+
        VarType type;
        bool isRange;
        uint64_t low;//also used to count unique items