浏览代码

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

Andreas Kling 4 年之前
父节点
当前提交
eb60cb156d
共有 1 个文件被更改,包括 3 次插入0 次删除
  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;