Skip to content

Commit 827e075

Browse files
committed
[lsan] Use final on Fuchsia ThreadContext declaration
This is consistent with other platforms' versions and eliminates a compiler warning. Reviewed By: leonardchan Differential Revision: https://reviews.llvm.org/D92442
1 parent 19c3894 commit 827e075

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/lsan/lsan_fuchsia.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
namespace __lsan {
2525

26-
class ThreadContext : public ThreadContextLsanBase {
26+
class ThreadContext final : public ThreadContextLsanBase {
2727
public:
2828
explicit ThreadContext(int tid);
2929
void OnCreated(void *arg) override;

0 commit comments

Comments
 (0)