Uh oh!
There was an error while loading. Please reload this page.
Convert warning about *const _ to a future-compat lint - #46914
Conversation
arielb1
commented
Dec 21, 2017
Needs a rebase |
arielb1
commented
Dec 21, 2017
r=me with a rebase |
bd3bee4 to
0783db9Comparemikeyhew
commented
Dec 22, 2017
Oh true, I had a hunch this would cause an error because of |
arielb1
commented
Dec 22, 2017
Still errors in |
These further changes got my local copy ( EDIT: (Well, most of one. Didn't have Make installed yet so those tests failed and prevented the rustdoc tests apparently)
-141 let arr = &mut self.values as &mut [ManuallyDrop<_>];+141 let arr = &mut self.values as &mut [ManuallDrop<<A as Array>::Element>];
...
-263 let arr = &mut source_array_vec.values as &mut [ManualyDrop<_>];+263 let arr =+264 &mut source_array_vec.values as &mut [ManuallyDrop<<A as Array>::Element>];
-773 let buf = &mut (*db).ReparseTarget as *mut _;+773 let buf = &mut (*db).ReparseTarget as *mut c::WCHAR;commit at CAD97@0563701 if you just want to add that to the PR. |
mikeyhew
commented
Dec 23, 2017
@CAD97 thanks! I develop on OSX, so would have had to wait for AppVeyor to fail before I could fix the windows errors |
arielb1
commented
Dec 23, 2017
doc test failure: |
arielb1
commented
Dec 23, 2017
@bors r+ |
bors
commented
Dec 23, 2017
📌 Commit 60e6629 has been approved by |
bors
commented
Dec 25, 2017
bors
commented
Dec 25, 2017
☀️ Test successful - status-appveyor, status-travis |
#46664 was merged before I could convert the soft warning about method lookup on
*const _into a future-compatibility lint. This PR makes that change.fixes#46837
tracking issue for the future-compatibility lint: #46906
r? @arielb1