Resolve clippy issue
This commit is contained in:
parent
cfcd146dfa
commit
0719c73ef8
|
@ -13,7 +13,7 @@ use std::{
|
||||||
use anyhow::{anyhow, bail, ensure, Result};
|
use anyhow::{anyhow, bail, ensure, Result};
|
||||||
use objdiff_core::obj::split_meta::SplitMeta;
|
use objdiff_core::obj::split_meta::SplitMeta;
|
||||||
pub use relocations::{ObjReloc, ObjRelocKind, ObjRelocations};
|
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 splits::{ObjSplit, ObjSplits};
|
||||||
pub use symbols::{
|
pub use symbols::{
|
||||||
best_match_for_reloc, ObjDataKind, ObjSymbol, ObjSymbolFlagSet, ObjSymbolFlags, ObjSymbolKind,
|
best_match_for_reloc, ObjDataKind, ObjSymbol, ObjSymbolFlagSet, ObjSymbolFlags, ObjSymbolKind,
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
//! This includes helpers to convert between decomp-toolkit types and objdiff-core types.
|
//! 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
|
//! Eventually it'd be nice to share [ObjInfo] and related types between decomp-toolkit and
|
||||||
//! objdiff-core to avoid this conversion.
|
//! objdiff-core to avoid this conversion.
|
||||||
use std::{
|
use std::{
|
||||||
|
|
Loading…
Reference in New Issue