diff options
author | John Hodge <tpg@mutabah.net> | 2016-06-09 09:54:57 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-06-09 09:54:57 +0800 |
commit | 502cc9c8dc1941877b35e45d742a3e36264671ca (patch) | |
tree | 5ff1f49577673035d7e4d9ff951884e6e979c3f1 /src/ast | |
parent | 7685ecc25ad47d369ea250d36c71bae4cec2d9a1 (diff) | |
download | mrust-502cc9c8dc1941877b35e45d742a3e36264671ca.tar.gz |
HIR - Save and use paths to #[lang] items
Diffstat (limited to 'src/ast')
-rw-r--r-- | src/ast/crate.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast/crate.hpp b/src/ast/crate.hpp index 79a5d57f..24106bfa 100644 --- a/src/ast/crate.hpp +++ b/src/ast/crate.hpp @@ -19,7 +19,7 @@ public: ::AST::MetaItems m_attrs; - AST::Path m_lang_item_PhantomFn; + ::std::map< ::std::string, ::AST::Path> m_lang_items; public: Module m_root_module; ::std::map< ::std::string, ExternCrate> m_extern_crates; |