Skip to content

Commit f26919e

Browse files
committed
Fix Mac and Windows builds.
1 parent 5aba8ea commit f26919e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/symbolize/gimli/coff.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
use super::{Context, Mapping, Path, Stash, Vec};
1+
use super::{gimli, Context, Endian, EndianSlice, Mapping, Path, Stash, Vec};
2+
use alloc::sync::Arc;
23
use core::convert::TryFrom;
34
use object::pe::{ImageDosHeader, ImageSymbol};
45
use object::read::pe::{ImageNtHeaders, ImageOptionalHeader, SectionTable};

src/symbolize/gimli/macho.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
use super::{Box, Context, Mapping, Path, Stash, Vec};
1+
use super::{gimli, Box, Context, Endian, EndianSlice, Mapping, Path, Stash, Vec};
2+
use alloc::sync::Arc;
23
use core::convert::TryInto;
34
use object::macho;
45
use object::read::macho::{MachHeader, Nlist, Section, Segment as _};

0 commit comments

Comments
 (0)