Fix some things that C++ doesn't like so we don't lose the possibility to use the...
[satune.git] / src / AST / mutableset.h
1 #ifndef MUTABLESET_H
2 #define MUTABLESET_H
3 #include "set.h"
4
5 MutableSet * allocMutableSet(VarType t);
6 void addElementMSet(MutableSet * set, uint64_t element);
7 #endif