diff --git a/src/read/cfi.rs b/src/read/cfi.rs index f644203a..2c25f748 100644 --- a/src/read/cfi.rs +++ b/src/read/cfi.rs @@ -2030,12 +2030,16 @@ impl> UnwindContext { } /// Run the CIE's initial instructions and initialize this `UnwindContext`. - fn initialize, Section: UnwindSection>( + fn initialize( &mut self, section: &Section, bases: &BaseAddresses, cie: &CommonInformationEntry, - ) -> Result<()> { + ) -> Result<()> + where + R: Reader, + Section: UnwindSection, + { // Always reset because previous initialization failure may leave dirty state. self.reset();