diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-06-30 06:40:17 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-06-30 06:40:17 +0200 |
| commit | 197fb26da0b8bb068fc8b52931870f97661b797d (patch) | |
| tree | be2700f441d9ff947339377915b8debe96a6256d /lib | |
| parent | e8377659560497beb36ec1f981b024f74292c1b9 (diff) | |
| download | zig-197fb26da0b8bb068fc8b52931870f97661b797d.tar.gz zig-197fb26da0b8bb068fc8b52931870f97661b797d.zip | |
libunwind: Fix return type of DwarfFDECache<A>::findFDE()
https://github.com/llvm/llvm-project/pull/146308
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libunwind/src/UnwindCursor.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libunwind/src/UnwindCursor.hpp b/lib/libunwind/src/UnwindCursor.hpp index 3831d8e071..cd4d40b9ac 100644 --- a/lib/libunwind/src/UnwindCursor.hpp +++ b/lib/libunwind/src/UnwindCursor.hpp @@ -150,7 +150,7 @@ bool DwarfFDECache<A>::_registeredForDyldUnloads = false; #endif template <typename A> -typename A::pint_t DwarfFDECache<A>::findFDE(pint_t mh, pint_t pc) { +typename DwarfFDECache<A>::pint_t DwarfFDECache<A>::findFDE(pint_t mh, pint_t pc) { pint_t result = 0; _LIBUNWIND_LOG_IF_FALSE(_lock.lock_shared()); for (entry *p = _buffer; p < _bufferUsed; ++p) { |
