diff options
| author | Alex Burka <aburka@seas.upenn.edu> | 2016-02-11 12:52:39 -0500 |
|---|---|---|
| committer | Alex Burka <aburka@seas.upenn.edu> | 2016-02-27 02:01:41 -0500 |
| commit | 1ec3005e451137e51479b77ea3ab4f45dec56ed0 (patch) | |
| tree | 4f9934619f6023cde50cf461c33cea0433fa04f1 /src/libsyntax/parse | |
| parent | 7eb7c56bd43b2ae12ef8b92e7258d520099a5347 (diff) | |
| download | rust-1ec3005e451137e51479b77ea3ab4f45dec56ed0.tar.gz rust-1ec3005e451137e51479b77ea3ab4f45dec56ed0.zip | |
fix fallout from libsyntax enumpocalypse
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 8b563ef00f3..e772641aca5 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -2056,7 +2056,7 @@ impl<'a> Parser<'a> { start: Option<P<Expr>>, end: Option<P<Expr>>, limits: RangeLimits) - -> ast::Expr_ { + -> ast::ExprKind { ExprKind::Range(start, end, limits) } |
