diff options
| author | Dale Wijnand <dale.wijnand@gmail.com> | 2018-11-27 16:46:59 +0000 |
|---|---|---|
| committer | Dale Wijnand <dale.wijnand@gmail.com> | 2018-11-27 16:46:59 +0000 |
| commit | 4a7ffe2646b5d152297ab8008cc64693b4fd3d0a (patch) | |
| tree | f88ebe84c21251b62be8d308c060bfcb0726b988 | |
| parent | afb4fbd951bc9780b5a7812f9a72aa9e2f085814 (diff) | |
| download | rust-4a7ffe2646b5d152297ab8008cc64693b4fd3d0a.tar.gz rust-4a7ffe2646b5d152297ab8008cc64693b4fd3d0a.zip | |
Fix issue number
| -rw-r--r-- | src/libcore/ptr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index 7b93795728b..7c8b195db8f 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -2532,7 +2532,7 @@ pub fn eq<T: ?Sized>(a: *const T, b: *const T) -> bool { /// /// assert_eq!(actual, expected); /// ``` -#[unstable(feature = "ptr_hash", reason = "newly added", issue = "56285")] +#[unstable(feature = "ptr_hash", reason = "newly added", issue = "56286")] pub fn hash<T, S: hash::Hasher>(hashee: &T, into: &mut S) { use hash::Hash; NonNull::from(hashee).hash(into) |
