diff options
author | John Hodge (bugs) <tpg@mutabah.net> | 2014-12-21 18:08:24 +0800 |
---|---|---|
committer | John Hodge (bugs) <tpg@mutabah.net> | 2014-12-21 18:08:24 +0800 |
commit | 89771222961d699f5ca6f586033b5fb915ced431 (patch) | |
tree | ea9c38b65e10f495a0fbb82475221fa8875cba73 /ast/ast.hpp | |
parent | e1a51554c956ccde6a59952a8b9a557df904cf71 (diff) | |
download | mrust-89771222961d699f5ca6f586033b5fb915ced431.tar.gz |
Hacking up conversion
Diffstat (limited to 'ast/ast.hpp')
-rw-r--r-- | ast/ast.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ast/ast.hpp b/ast/ast.hpp index fdb1114d..9e4728b3 100644 --- a/ast/ast.hpp +++ b/ast/ast.hpp @@ -182,6 +182,12 @@ public: void iterate_functions( fcn_visitor_t* visitor );
};
+class Flat
+{
+ ::std::vector<Function> m_functions;
+public:
+};
+
}
#endif // AST_HPP_INCLUDED
|