Skip to content

Commit cda8d07

Browse files
committed
Fix Path path
1 parent 925061e commit cda8d07

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/symbolize/gimli/coff.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use super::mystd::fs::Path;
1+
use super::mystd::path::Path;
22
use super::{gimli, Context, Endian, EndianSlice, Mapping, Stash};
33
use alloc::sync::Arc;
44
use alloc::vec::Vec;

src/symbolize/gimli/macho.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use super::mystd::fs::Path;
1+
use super::mystd::path::Path;
22
use super::{gimli, Context, Endian, EndianSlice, Mapping, Stash};
33
use alloc::boxed::Box;
44
use alloc::sync::Arc;

src/symbolize/gimli/xcoff.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use super::mystd::ffi::{OsStr, OsString};
2-
use super::mystd::fs::Path;
32
use super::mystd::os::unix::ffi::OsStrExt;
3+
use super::mystd::path::Path;
44
use super::{gimli, Context, Endian, EndianSlice, Mapping, Stash};
55
use alloc::sync::Arc;
66
use alloc::vec::Vec;

0 commit comments

Comments
 (0)