Forráskód Böngészése

AK: Bring Singleton into the global namespace with `using`

Andreas Kling 4 éve
szülő
commit
eb60cb156d
1 módosított fájl, 3 hozzáadás és 0 törlés
  1. 3 0
      AK/Singleton.h

+ 3 - 0
AK/Singleton.h

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