diff options
author | John Hodge <tpg@ucc.asn.au> | 2017-11-12 18:31:27 +0800 |
---|---|---|
committer | John Hodge <tpg@ucc.asn.au> | 2017-11-12 18:31:27 +0800 |
commit | 1392ffdbf7a682222b99304946253aa0b70b8dc5 (patch) | |
tree | a858d940aaa92cd5f81952ac06685bf351e64ade /src/hir/deserialise.cpp | |
parent | 4912b243930dba3111e090f57f9e3ffa9f7deeb9 (diff) | |
download | mrust-1392ffdbf7a682222b99304946253aa0b70b8dc5.tar.gz |
All - proc_macro support through to attempting to run them
Diffstat (limited to 'src/hir/deserialise.cpp')
-rw-r--r-- | src/hir/deserialise.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/hir/deserialise.cpp b/src/hir/deserialise.cpp index c5867542..8023be3c 100644 --- a/src/hir/deserialise.cpp +++ b/src/hir/deserialise.cpp @@ -1210,6 +1210,8 @@ namespace { rv.m_ext_libs = deserialise_vec< ::HIR::ExternLibrary>(); rv.m_link_paths = deserialise_vec< ::std::string>(); + rv.m_proc_macros = deserialise_vec< ::HIR::SimplePath>(); + return rv; } } |