summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Agarwal <agarwaltushar@google.com>2024-01-29 14:27:08 +0000
committerTushar Agarwal <agarwaltushar@google.com>2024-01-29 14:27:58 +0000
commit623f2e7ba4ed1581673e9740fcdb9de9210b5df5 (patch)
tree4160600b4192fb3e623da19879070d9159da91f8
parente3af1cc9271f0a99a7f2849b4500b74c6a016010 (diff)
downloadunwinding-623f2e7ba4ed1581673e9740fcdb9de9210b5df5.tar.gz
Remove unnecessary semicolon.
I noticed this while updating Chromium's libunwindstack dependency, where this manifested as a compile-time error. Test: Not needed (no semantics changed). Change-Id: I05b4f9eb5026ce6a0e70e79e187968d9914d5df4
-rw-r--r--libunwindstack/include/unwindstack/Unwinder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libunwindstack/include/unwindstack/Unwinder.h b/libunwindstack/include/unwindstack/Unwinder.h
index d78da5c..91fd1d5 100644
--- a/libunwindstack/include/unwindstack/Unwinder.h
+++ b/libunwindstack/include/unwindstack/Unwinder.h
@@ -85,7 +85,7 @@ class Unwinder {
static std::string FormatFrame(ArchEnum arch, const FrameData& frame,
bool display_build_id = true);
- void SetArch(ArchEnum arch) { arch_ = arch; };
+ void SetArch(ArchEnum arch) { arch_ = arch; }
void SetJitDebug(JitDebug* jit_debug);