Scoped enums and constexpr.

This commit is contained in:
Leonardo Zide
2020-03-22 13:44:20 -07:00
parent ade7334fa1
commit 90f1336a48
18 changed files with 186 additions and 188 deletions
+2 -3
View File
@@ -5,10 +5,9 @@
lcStringCache gStringCache;
lcStringCache::lcStringCache()
constexpr lcStringCache::lcStringCache()
: mTexture(nullptr), mRefCount(0)
{
mTexture = nullptr;
mRefCount = 0;
}
lcStringCache::~lcStringCache()