diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-13 22:22:09 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-13 22:22:09 +0800 |
commit | 432892ea9ce604b6d12d6b087ad6328eb335f70c (patch) | |
tree | 754666f17175755194aa9aa701fb6050eb7ef92f /src/ast | |
parent | 8e9e3a395f211dc871c3abc816b1cc892ed74312 (diff) | |
download | mrust-432892ea9ce604b6d12d6b087ad6328eb335f70c.tar.gz |
HIR - Continued expansion
Diffstat (limited to 'src/ast')
-rw-r--r-- | src/ast/ast.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ast/ast.hpp b/src/ast/ast.hpp index fc1a2f73..0076678c 100644 --- a/src/ast/ast.hpp +++ b/src/ast/ast.hpp @@ -620,10 +620,10 @@ public: const ::AST::Path& path() const { return m_my_path; }
ItemRef find_item(const ::std::string& needle, bool allow_leaves = true, bool ignore_private_wildcard = true) const;
- ::std::vector<Named<Item>>& items() { return m_items; }
+ ::std::vector<Named<Item>>& items() { return m_items; }
const ::std::vector<Named<Item>>& items() const { return m_items; }
- itemlist_use_t& imports() { return m_imports; }
+ itemlist_use_t& imports() { return m_imports; }
const itemlist_use_t& imports() const { return m_imports; }
::std::vector<Impl>& impls() { return m_impls; }
|