From ae32c877a5adb87af38fce0be918a6a03f8b3540 Mon Sep 17 00:00:00 2001 From: Matthias Krüger Date: Mon, 26 Nov 2018 01:12:12 +0100 Subject: constants: add u128 i128 builtin types and fix outdated url --- clippy_lints/src/utils/constants.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'clippy_lints') diff --git a/clippy_lints/src/utils/constants.rs b/clippy_lints/src/utils/constants.rs index 42da95a12ed..2e87191d720 100644 --- a/clippy_lints/src/utils/constants.rs +++ b/clippy_lints/src/utils/constants.rs @@ -16,7 +16,7 @@ /// /// See also [the reference][reference-types] for a list of such types. /// -/// [reference-types]: https://doc.rust-lang.org/reference.html#types +/// [reference-types]: https://doc.rust-lang.org/reference/types.html pub const BUILTIN_TYPES: &[&str] = &[ "i8", "u8", @@ -26,6 +26,8 @@ pub const BUILTIN_TYPES: &[&str] = &[ "u32", "i64", "u64", + "i128", + "u128", "isize", "usize", "f32", -- cgit 1.4.1-3-g733a5