Skip to content

Commit e83eb23

Browse files
committed
[libunwind] Fix a -Wextra-semi warning
1 parent ebcb5d5 commit e83eb23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libunwind/src/FrameHeaderCache.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131

3232
class _LIBUNWIND_HIDDEN FrameHeaderCache {
3333
struct CacheEntry {
34-
uintptr_t LowPC() { return Info.dso_base; };
35-
uintptr_t HighPC() { return Info.dso_base + Info.text_segment_length; };
34+
uintptr_t LowPC() { return Info.dso_base; }
35+
uintptr_t HighPC() { return Info.dso_base + Info.text_segment_length; }
3636
UnwindInfoSections Info;
3737
CacheEntry *Next;
3838
};

0 commit comments

Comments
 (0)