Skip to content

Commit 197fb26

Browse files
committed
libunwind: Fix return type of DwarfFDECache<A>::findFDE()
llvm/llvm-project#146308
1 parent e837765 commit 197fb26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/libunwind/src/UnwindCursor.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ bool DwarfFDECache<A>::_registeredForDyldUnloads = false;
150150
#endif
151151

152152
template <typename A>
153-
typename A::pint_t DwarfFDECache<A>::findFDE(pint_t mh, pint_t pc) {
153+
typename DwarfFDECache<A>::pint_t DwarfFDECache<A>::findFDE(pint_t mh, pint_t pc) {
154154
pint_t result = 0;
155155
_LIBUNWIND_LOG_IF_FALSE(_lock.lock_shared());
156156
for (entry *p = _buffer; p < _bufferUsed; ++p) {

0 commit comments

Comments
 (0)