diff options
Diffstat (limited to 'src/ast/ast.hpp')
-rw-r--r-- | src/ast/ast.hpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/ast/ast.hpp b/src/ast/ast.hpp index 62eeff7c..3b510168 100644 --- a/src/ast/ast.hpp +++ b/src/ast/ast.hpp @@ -25,8 +25,6 @@ #include "expr.hpp"
-
-#if 1
namespace AST {
using ::std::unique_ptr;
@@ -892,11 +890,6 @@ public: SERIALISABLE_PROTOTYPES();
};
-}
-#endif
-
-namespace AST
-{
class CStruct
{
@@ -917,7 +910,7 @@ public: const ::std::vector<CStruct>& structs() const { return m_structs; }
};
-}
+} // namespace AST
class GenericResolveClosure
{
|