diff options
| author | Axary <bastian_kauschke@hotmail.de> | 2018-11-16 19:35:13 +0100 |
|---|---|---|
| committer | Axary <bastian_kauschke@hotmail.de> | 2018-11-16 19:35:13 +0100 |
| commit | 2be930bd03d3c9b9230ae3b9cc8fc30b83378900 (patch) | |
| tree | 0960bfdfd061292aca353a330d7c8a83ff2dc144 /src/libsyntax/parse | |
| parent | fe23ffbda01d2033c98ec6cec7f51cb08f625ec9 (diff) | |
| download | rust-2be930bd03d3c9b9230ae3b9cc8fc30b83378900.tar.gz rust-2be930bd03d3c9b9230ae3b9cc8fc30b83378900.zip | |
fix tidy (remove whitespace)
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 a4b01f485d3..18929af4718 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -5394,7 +5394,7 @@ impl<'a> Parser<'a> { fn parse_fn_args(&mut self, named_args: bool, allow_variadic: bool) -> PResult<'a, (Vec<Arg> , bool)> { self.expect(&token::OpenDelim(token::Paren))?; - + let sp = self.span; let mut variadic = false; let args: Vec<Option<Arg>> = |
