mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +00:00
Revert "Kernel: Move Singleton class to AK"
This reverts commit f0906250a1.
This commit is contained in:
@@ -25,16 +25,16 @@
|
||||
*/
|
||||
|
||||
#include <AK/HashMap.h>
|
||||
#include <AK/Singleton.h>
|
||||
#include <Kernel/Net/LoopbackAdapter.h>
|
||||
#include <Kernel/Net/Routing.h>
|
||||
#include <Kernel/Thread.h>
|
||||
#include <Kernel/Singleton.h>
|
||||
|
||||
//#define ROUTING_DEBUG
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
static auto s_arp_table = AK::make_singleton<Lockable<HashMap<IPv4Address, MACAddress>>>();
|
||||
static auto s_arp_table = make_singleton<Lockable<HashMap<IPv4Address, MACAddress>>>();
|
||||
|
||||
Lockable<HashMap<IPv4Address, MACAddress>>& arp_table()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user