Skip to content

Commit

Permalink
[libunwind] Fix a -Wextra-semi warning
Browse files Browse the repository at this point in the history
  • Loading branch information
arichardson committed Sep 29, 2023
1 parent ebcb5d5 commit e83eb23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libunwind/src/FrameHeaderCache.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@

class _LIBUNWIND_HIDDEN FrameHeaderCache {
struct CacheEntry {
uintptr_t LowPC() { return Info.dso_base; };
uintptr_t HighPC() { return Info.dso_base + Info.text_segment_length; };
uintptr_t LowPC() { return Info.dso_base; }
uintptr_t HighPC() { return Info.dso_base + Info.text_segment_length; }
UnwindInfoSections Info;
CacheEntry *Next;
};
Expand Down

0 comments on commit e83eb23

Please sign in to comment.