1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:47:44 +00:00

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;