Remove unnecessary virtual specifier
Clang has added a new warning for virtual specifiers on methods of
`final` classes. This cleans them up in preparation for enabling that
warning.
Bug: chromium:403236787
Change-Id: Icaf49d8b2631a5afb64b134b54d67f2e31477f4a
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/382540
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Reviewed-by: Tomas Gunnarsson <tommi@webrtc.org>
Commit-Queue: Tomas Gunnarsson <tommi@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#44213}
diff --git a/rtc_base/platform_thread.h b/rtc_base/platform_thread.h
index 0d1c40d..db2b105 100644
--- a/rtc_base/platform_thread.h
+++ b/rtc_base/platform_thread.h
@@ -71,7 +71,7 @@
// For a PlatformThread that's been spawned joinable, the destructor suspends
// the calling thread until the created thread exits unless the thread has
// already exited.
- virtual ~PlatformThread();
+ ~PlatformThread();
// Finalizes any allocated resources.
// For a PlatformThread that's been spawned joinable, Finalize() suspends