summaryrefslogtreecommitdiff
path: root/src/ast/path.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast/path.cpp')
-rw-r--r--src/ast/path.cpp2
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);
})