Skip to content

Commit

Permalink
Fix Mac and Windows builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
khuey committed Apr 20, 2023
1 parent 5aba8ea commit f26919e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/symbolize/gimli/coff.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use super::{Context, Mapping, Path, Stash, Vec};
use super::{gimli, Context, Endian, EndianSlice, Mapping, Path, Stash, Vec};
use alloc::sync::Arc;
use core::convert::TryFrom;
use object::pe::{ImageDosHeader, ImageSymbol};
use object::read::pe::{ImageNtHeaders, ImageOptionalHeader, SectionTable};
Expand Down
3 changes: 2 additions & 1 deletion src/symbolize/gimli/macho.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use super::{Box, Context, Mapping, Path, Stash, Vec};
use super::{gimli, Box, Context, Endian, EndianSlice, Mapping, Path, Stash, Vec};
use alloc::sync::Arc;
use core::convert::TryInto;
use object::macho;
use object::read::macho::{MachHeader, Nlist, Section, Segment as _};
Expand Down

0 comments on commit f26919e

Please sign in to comment.