mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 13:25:09 +00:00
Remove leading ::
This commit is contained in:
parent
85a6bf3424
commit
fd5307e60d
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ impl ReferenceSearchResult {
|
||||||
// over FileRanges
|
// over FileRanges
|
||||||
impl IntoIterator for ReferenceSearchResult {
|
impl IntoIterator for ReferenceSearchResult {
|
||||||
type Item = FileRange;
|
type Item = FileRange;
|
||||||
type IntoIter = ::std::vec::IntoIter<FileRange>;
|
type IntoIter = std::vec::IntoIter<FileRange>;
|
||||||
|
|
||||||
fn into_iter(mut self) -> Self::IntoIter {
|
fn into_iter(mut self) -> Self::IntoIter {
|
||||||
let mut v = Vec::with_capacity(self.len());
|
let mut v = Vec::with_capacity(self.len());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue