commit | d7ee910e7eb13b17d2a22fdf8a72858c74990252 | [log] [tgz] |
---|---|---|
author | Michael Layzell <michael@thelayzells.com> | Wed Jun 07 10:02:19 2017 -0400 |
committer | Michael Layzell <michael@thelayzells.com> | Wed Jun 07 23:39:58 2017 -0400 |
tree | 56b3235715860c8736fdfef8c55df19fb985ef84 | |
parent | 1107ef3fced56cdead30daacfbf67309e8379a73 [diff] [blame] |
Remove constexpr
diff --git a/src/data.rs b/src/data.rs index ef6490e..937de27 100644 --- a/src/data.rs +++ b/src/data.rs
@@ -14,7 +14,7 @@ pub data: VariantData, /// Explicit discriminant, e.g. `Foo = 1` - pub discriminant: Option<ConstExpr>, + pub discriminant: Option<Expr>, pub eq_token: Option<tokens::Eq>, }