fix for VS builds, due to FPTR conversion (nw)

This commit is contained in:
Miodrag Milanovic 2015-12-05 17:51:42 +01:00
parent 31ae631b88
commit b6514ceb72

View File

@ -142,7 +142,7 @@ public:
for (entry_t *entry = m_table[fullhash % ARRAY_LENGTH(m_table)]; entry != nullptr; entry = entry->next())
if (entry->fullhash() == fullhash && entry->tag() == tag)
return entry->object();
return _ElementType(nullptr);
return _ElementType(NULL);
}
// find by tag without checking anything but the hash