diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-14 22:18:19 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-14 22:18:19 +0800 |
commit | 0bc8acddc94730dcb1f9bd3b2c981b119fe57f6f (patch) | |
tree | e41420c0d91b83b0b19cf04bb1ab570afc2cd457 /src/include | |
parent | e9bc74be1a7a51ed4689952f27f2b91e2bc5c7eb (diff) | |
download | mrust-0bc8acddc94730dcb1f9bd3b2c981b119fe57f6f.tar.gz |
HIR Types
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/tagged_union.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/tagged_union.hpp b/src/include/tagged_union.hpp index de524558..f247f226 100644 --- a/src/include/tagged_union.hpp +++ b/src/include/tagged_union.hpp @@ -185,9 +185,9 @@ #define TAGGED_UNION_EX(_name, _inherit, _def, _variants, _extra_move, _extra_assign, _extra) \ class _name TU_EXP _inherit { \ typedef _name self_t;/* -*/ TU_TYPEDEFS _variants/* */public:\ - enum Tag { \ + TU_TYPEDEFS _variants/* +*/ enum Tag { \ TU_TAGS _variants\ };/* */ private:\ |