Remove leading ::

This commit is contained in:
Ville Penttinen 2019-02-17 17:25:19 +02:00
parent 85a6bf3424
commit fd5307e60d

View File

@ -46,7 +46,7 @@ impl ReferenceSearchResult {
// over FileRanges
impl IntoIterator for ReferenceSearchResult {
type Item = FileRange;
type IntoIter = ::std::vec::IntoIter<FileRange>;
type IntoIter = std::vec::IntoIter<FileRange>;
fn into_iter(mut self) -> Self::IntoIter {
let mut v = Vec::with_capacity(self.len());