Merge pull request #3519 from oli-obk/patch-1

"first" element check does nothing
This commit is contained in:
Seiichi Uchida 2019-04-22 04:54:06 -07:00 committed by GitHub
commit 31a69429ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -847,7 +847,7 @@ impl MacroArgParser {
span: Span,
) -> Option<()> {
let mut buffer = String::new();
let mut first = false;
let mut first = true;
let mut lo = span.lo();
let mut hi = span.hi();