diff options
author | John Hodge <tpg@mutabah.net> | 2016-12-18 14:15:03 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-12-18 14:15:03 +0800 |
commit | 31c4212f66ef827ca933443b10b2caac5d7f654a (patch) | |
tree | 977e87461069b03eceb409524fbeece59ac67033 /src/hir/deserialise.cpp | |
parent | 48658d1621851fc1cda5fff397cfc380c0757b8e (diff) | |
download | mrust-31c4212f66ef827ca933443b10b2caac5d7f654a.tar.gz |
HIR Markings - Store presense of a Drop impl
Diffstat (limited to 'src/hir/deserialise.cpp')
-rw-r--r-- | src/hir/deserialise.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hir/deserialise.cpp b/src/hir/deserialise.cpp index 732e8156..7b821630 100644 --- a/src/hir/deserialise.cpp +++ b/src/hir/deserialise.cpp @@ -557,6 +557,7 @@ namespace { BIT(0, m.can_unsize) BIT(1, m.has_a_deref) BIT(2, m.is_copy) + BIT(3, m.has_drop_impl) #undef BIT m.dst_type = static_cast< ::HIR::TraitMarkings::DstType>( m_in.read_tag() ); m.coerce_unsized_index = m_in.read_count( ); |