From eb60cb156da0f88d0f6930fb9cc32012ac56e28e Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 7 Aug 2021 21:33:20 +0200 Subject: [PATCH] AK: Bring Singleton into the global namespace with `using` --- AK/Singleton.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AK/Singleton.h b/AK/Singleton.h index a5c19a95e4..a736d3471f 100644 --- a/AK/Singleton.h +++ b/AK/Singleton.h @@ -110,4 +110,7 @@ public: private: mutable Atomic m_obj { nullptr }; }; + } + +using AK::Singleton;