diff options
author | John Hodge <tpg@mutabah.net> | 2018-02-11 21:57:10 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2018-02-11 21:57:10 +0800 |
commit | a3a0c6437302c60bd6f521fc11e30c0a16bd79fc (patch) | |
tree | 83b536f1d5b170a88417015ec0a7f378ab6ea4c4 /tools/standalone_miri/hir_sim.hpp | |
parent | 14fea32f414df2d1e0b8e2669c8fe13132210ae9 (diff) | |
download | mrust-a3a0c6437302c60bd6f521fc11e30c0a16bd79fc.tar.gz |
Standalone MIRI - Implementation sprint, statics in process.
Diffstat (limited to 'tools/standalone_miri/hir_sim.hpp')
-rw-r--r-- | tools/standalone_miri/hir_sim.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/standalone_miri/hir_sim.hpp b/tools/standalone_miri/hir_sim.hpp index 1303f077..96887536 100644 --- a/tools/standalone_miri/hir_sim.hpp +++ b/tools/standalone_miri/hir_sim.hpp @@ -82,6 +82,7 @@ namespace HIR { /// Definition of a type struct TypeRef { + // Top to bottom list of wrappers (first entry is the outermost wrapper) ::std::vector<TypeWrapper> wrappers; RawType inner_type = RawType::Unit; const DataType* composite_type = nullptr; |