AK: Bring Singleton into the global namespace with using

This commit is contained in:
Andreas Kling 2021-08-07 21:33:20 +02:00
parent 15d033b486
commit eb60cb156d

View file

@ -110,4 +110,7 @@ public:
private:
mutable Atomic<T*> m_obj { nullptr };
};
}
using AK::Singleton;