nullptr -> NULL

This commit is contained in:
Dan 2015-12-08 10:37:54 -05:00
parent 76760470f3
commit 237f33d4f0

View File

@ -220,13 +220,13 @@ public:
}; };
namespace namespace
{ {
MatAllocator* g_matAllocator = nullptr; MatAllocator* g_matAllocator = NULL;
} }
MatAllocator* Mat::getDefaultAllocator() MatAllocator* Mat::getDefaultAllocator()
{ {
if (g_matAllocator == nullptr) if (g_matAllocator == NULL)
{ {
g_matAllocator = getStdAllocator(); g_matAllocator = getStdAllocator();
} }