From 72acef4e159df5dcdb93b3c13b2f9d2e5e4c21a9 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Tue, 23 Jan 2024 13:54:16 +0000 Subject: Mark types that have no inheritors as final. --- src/win32/pthread/pthread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/win32/pthread/pthread.cpp') diff --git a/src/win32/pthread/pthread.cpp b/src/win32/pthread/pthread.cpp index 237f29dd4..971066d0e 100644 --- a/src/win32/pthread/pthread.cpp +++ b/src/win32/pthread/pthread.cpp @@ -8,7 +8,7 @@ #include "pthread.h" -struct ThreadInfo +struct ThreadInfo final { void *(*entry)(void *); void *param; -- cgit