code: Replace printf/scanf with type safe fmt

This commit is contained in:
GPUCode 2023-10-26 23:29:05 +03:00
parent 33729d634e
commit 28819dede1
9 changed files with 50 additions and 52 deletions

View file

@ -9,7 +9,7 @@ public:
if (!m_instance) {
m_instance = std::make_unique<T>();
}
return m_instance;
return m_instance.get();
}
protected: