Commit 237f33d4 authored by Dan's avatar Dan

nullptr -> NULL

parent 76760470
...@@ -220,13 +220,13 @@ public: ...@@ -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();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment