summaryrefslogtreecommitdiffstats
path: root/vendor/object/src/read/traits.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
commit9835e2ae736235810b4ea1c162ca5e65c547e770 (patch)
tree3fcebf40ed70e581d776a8a4c65923e8ec20e026 /vendor/object/src/read/traits.rs
parentReleasing progress-linux version 1.70.0+dfsg2-1~progress7.99u1. (diff)
downloadrustc-9835e2ae736235810b4ea1c162ca5e65c547e770.tar.xz
rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.zip
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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.