diff options
Diffstat (limited to 'src/ast')
-rw-r--r-- | src/ast/path.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ast/path.cpp b/src/ast/path.cpp index eab5d745..80c9bbdb 100644 --- a/src/ast/path.cpp +++ b/src/ast/path.cpp @@ -301,9 +301,11 @@ void operator>>(Deserialiser& s, Path::Class& pc) } SERIALISE_TYPE(Path::, "AST_Path", { s << m_class; + s << m_crate; s << m_nodes; },{ s >> m_class; + s.item(m_crate); s.item(m_nodes); }) |