summaryrefslogtreecommitdiff
path: root/src/mir/from_hir.hpp
diff options
context:
space:
mode:
authorJohn Hodge (bugs) <tpg@mutabah.net>2017-03-04 18:12:49 +0800
committerJohn Hodge (bugs) <tpg@mutabah.net>2017-03-04 18:12:49 +0800
commitc6fca061dd134068c831aefd88d9535a30f423ed (patch)
tree28fc4abecddf8514792a4cb748f1c6e5700274c1 /src/mir/from_hir.hpp
parent03addc877bab648ccde022edec29f5b051ce7cb9 (diff)
downloadmrust-c6fca061dd134068c831aefd88d9535a30f423ed.tar.gz
Many many changes to allow compiling in visual studio (Community 2015)
Diffstat (limited to 'src/mir/from_hir.hpp')
-rw-r--r--src/mir/from_hir.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir/from_hir.hpp b/src/mir/from_hir.hpp
index c8d34151..1b57a7f4 100644
--- a/src/mir/from_hir.hpp
+++ b/src/mir/from_hir.hpp
@@ -51,7 +51,7 @@ TAGGED_UNION_EX(VarState, (), Invalid, (
// Partially valid (Map of field states, Box is assumed to have one field)
(Partial, struct {
::std::vector<VarState> inner_states;
- unsigned int outer_flag = ~0u; // If ~0u there's no condition on the outer
+ unsigned int outer_flag; // If ~0u there's no condition on the outer
}),
// Optionally valid (integer indicates the drop flag index)
(Optional, unsigned int),