Resolve clippy issue

This commit is contained in:
Luke Street 2024-09-09 20:39:33 -06:00
parent cfcd146dfa
commit 0719c73ef8
2 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,7 @@ use std::{
use anyhow::{anyhow, bail, ensure, Result};
use objdiff_core::obj::split_meta::SplitMeta;
pub use relocations::{ObjReloc, ObjRelocKind, ObjRelocations};
pub use sections::{ObjSection, ObjSectionKind, ObjSections, section_kind_for_section};
pub use sections::{section_kind_for_section, ObjSection, ObjSectionKind, ObjSections};
pub use splits::{ObjSplit, ObjSplits};
pub use symbols::{
best_match_for_reloc, ObjDataKind, ObjSymbol, ObjSymbolFlagSet, ObjSymbolFlags, ObjSymbolKind,

View File

@ -1,4 +1,5 @@
//! This includes helpers to convert between decomp-toolkit types and objdiff-core types.
//!
//! Eventually it'd be nice to share [ObjInfo] and related types between decomp-toolkit and
//! objdiff-core to avoid this conversion.
use std::{