diff options
author | John Hodge <tpg@mutabah.net> | 2016-04-02 13:24:39 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-04-02 13:24:39 +0800 |
commit | bce9d5618eb54201cef08b1ba158d267cdef0b4f (patch) | |
tree | 1925d4a06f306cad14f475602d1e11c0a5f8862f /src/ast/ast.hpp | |
parent | 3ac89867ceb4474c3be9794348d7bd5183305cfb (diff) | |
download | mrust-bce9d5618eb54201cef08b1ba158d267cdef0b4f.tar.gz |
Resolve - Glob import handling
Diffstat (limited to 'src/ast/ast.hpp')
-rw-r--r-- | src/ast/ast.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ast/ast.hpp b/src/ast/ast.hpp index c86efe0f..c27beecf 100644 --- a/src/ast/ast.hpp +++ b/src/ast/ast.hpp @@ -547,6 +547,7 @@ private: ::std::vector< Named<MacroRules> > m_macros;
public:
+ char m_index_populated = 0; // 0 = no, 1 = partial, 2 = complete
::std::unordered_map< ::std::string, ::std::pair<bool, PathBinding> > m_type_items;
::std::unordered_map< ::std::string, ::std::pair<bool, PathBinding> > m_value_items;
|