diff options
| author | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-11-03 08:38:17 +0000 |
|---|---|---|
| committer | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-11-03 23:48:24 +0000 |
| commit | b60bcba9e4229cb6efbb31538aa0fd74a98c32f0 (patch) | |
| tree | daf2b60410b0389903f623f82119561a2dfd05da /src/libsyntax/ast.rs | |
| parent | 6e9bf12c6f22661f48e160a8bc23be0e72eff538 (diff) | |
| download | rust-b60bcba9e4229cb6efbb31538aa0fd74a98c32f0.tar.gz rust-b60bcba9e4229cb6efbb31538aa0fd74a98c32f0.zip | |
Make `ast::ExprKind` smaller.
Diffstat (limited to 'src/libsyntax/ast.rs')
| -rw-r--r-- | src/libsyntax/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index f077ead1f8e..f7581924eb1 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -1050,7 +1050,7 @@ pub enum ExprKind { Ret(Option<P<Expr>>), /// Output of the `asm!()` macro - InlineAsm(InlineAsm), + InlineAsm(P<InlineAsm>), /// A macro invocation; pre-expansion Mac(Mac), |
