diff options
| author | 2021-12-20 20:00:03 +0000 | |
|---|---|---|
| committer | 2021-12-20 20:19:40 +0000 | |
| commit | 421e8c8c793740aaf34feff761716c1c51d8f04e (patch) | |
| tree | b3bf0e3e8c3b7fd2beeefbe89fff8f25b12f2846 /src/threadsocket.cpp | |
| parent | Deduplicate xline adding code in the dnsbl module. (diff) | |
Add the final keyword to all remaining classes that can have it.
Diffstat (limited to 'src/threadsocket.cpp')
| -rw-r--r-- | src/threadsocket.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/threadsocket.cpp b/src/threadsocket.cpp index 4a8b542eb..4e56e8f43 100644 --- a/src/threadsocket.cpp +++ b/src/threadsocket.cpp @@ -25,7 +25,8 @@ #if __has_include(<sys/eventfd.h>) #include <sys/eventfd.h> -class ThreadSignalSocket : public EventHandler +class ThreadSignalSocket final + : public EventHandler { SocketThread* parent; public: @@ -73,7 +74,8 @@ SocketThread::SocketThread() } #else -class ThreadSignalSocket : public EventHandler +class ThreadSignalSocket final + : public EventHandler { SocketThread* parent; int send_fd; |
