mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
libunwind: Fix return type of DwarfFDECache<A>::findFDE()
https://github.com/llvm/llvm-project/pull/146308
This commit is contained in:
parent
e837765956
commit
197fb26da0
2
lib/libunwind/src/UnwindCursor.hpp
vendored
2
lib/libunwind/src/UnwindCursor.hpp
vendored
@ -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) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user