summaryrefslogtreecommitdiffstats
path: root/vendor/object/src/read/traits.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/object/src/read/traits.rs')
-rw-r--r--vendor/object/src/read/traits.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/object/src/read/traits.rs b/vendor/object/src/read/traits.rs
index f1a473e0a..d35b0b0ca 100644
--- a/vendor/object/src/read/traits.rs
+++ b/vendor/object/src/read/traits.rs
@@ -210,7 +210,7 @@ pub trait Object<'data: 'file, 'file>: read::private::Sealed {
/// The filename and GUID from the PE CodeView section
#[inline]
- fn pdb_info(&self) -> Result<Option<CodeView>> {
+ fn pdb_info(&self) -> Result<Option<CodeView<'_>>> {
Ok(None)
}
@@ -452,7 +452,7 @@ pub trait ObjectSymbol<'data>: read::private::Sealed {
fn is_local(&self) -> bool;
/// Symbol flags that are specific to each file format.
- fn flags(&self) -> SymbolFlags<SectionIndex>;
+ fn flags(&self) -> SymbolFlags<SectionIndex, SymbolIndex>;
}
/// An iterator for files that don't have dynamic relocations.