diff options
| author | Virgile Andreani <virgile.andreani@anbuco.fr> | 2014-05-04 20:48:16 +0200 |
|---|---|---|
| committer | Virgile Andreani <virgile.andreani@anbuco.fr> | 2014-05-04 20:48:16 +0200 |
| commit | 169a57ee8d301c44fb285cc95fc1309d96aa37ab (patch) | |
| tree | f41231004cca8500906203ac98acd71a8ba7ad86 /src/libsyntax | |
| parent | 0e8e0b2ede175be6a4874700674b259c8c63c2cc (diff) | |
| download | rust-169a57ee8d301c44fb285cc95fc1309d96aa37ab.tar.gz rust-169a57ee8d301c44fb285cc95fc1309d96aa37ab.zip | |
Remove two useless comparisons
according to the updated type_limits lint.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ext/format.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ext/format.rs b/src/libsyntax/ext/format.rs index df79b105444..0d856fb689d 100644 --- a/src/libsyntax/ext/format.rs +++ b/src/libsyntax/ext/format.rs @@ -268,7 +268,7 @@ impl<'a, 'b> Context<'a, 'b> { fn verify_arg_type(&mut self, arg: Position, ty: ArgumentType) { match arg { Exact(arg) => { - if arg < 0 || self.args.len() <= arg { + if self.args.len() <= arg { let msg = format!("invalid reference to argument `{}` (there \ are {} arguments)", arg, self.args.len()); self.ecx.span_err(self.fmtsp, msg); |
