1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-08 06:27:35 +00:00

Kernel: Mark Thread::Blocker leaf subclasses final

This commit is contained in:
Andreas Kling 2021-08-22 15:34:16 +02:00
parent 53019f413c
commit 8000e8a080
2 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@ namespace Kernel {
static Singleton<MutexProtected<HashMap<IPv4Address, MACAddress>>> s_arp_table;
class ARPTableBlocker : public Thread::Blocker {
class ARPTableBlocker final : public Thread::Blocker {
public:
ARPTableBlocker(IPv4Address ip_addr, Optional<MACAddress>& addr);