about summary refs log tree commit diff
path: root/src/expr.rs
diff options
context:
space:
mode:
authorSeiichi Uchida <seuchida@gmail.com>2019-09-06 22:41:03 +0900
committerGitHub <noreply@github.com>2019-09-06 22:41:03 +0900
commit5baba86fe554424e8a58e3f1a3f29c258fce3296 (patch)
tree2fd322b9bfd583bca41d1ec2ef3c1a67e0a666c9 /src/expr.rs
parent1ded995ee79c44069b7832e5aba00162fc2113fa (diff)
Update rustc-ap-* crates to 581.0.0 (#3783)
Diffstat (limited to 'src/expr.rs')
-rw-r--r--src/expr.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.rs b/src/expr.rs
index 9030d876b40..02bf1fa20e4 100644
--- a/src/expr.rs
+++ b/src/expr.rs
@@ -1316,8 +1316,8 @@ pub(crate) fn can_be_overflowed_expr(
             context.config.overflow_delimited_expr()
                 || (context.use_block_indent() && args_len == 1)
         }
-        ast::ExprKind::Mac(ref macro_) => {
-            match (macro_.node.delim, context.config.overflow_delimited_expr()) {
+        ast::ExprKind::Mac(ref mac) => {
+            match (mac.delim, context.config.overflow_delimited_expr()) {
                 (ast::MacDelimiter::Bracket, true) | (ast::MacDelimiter::Brace, true) => true,
                 _ => context.use_block_indent() && args_len == 1,
             }