Merge pull request #544 from diamante0018/develop

refactor(memory): remove nullptr check before std::free
This commit is contained in:
Maurice Heumann 2022-11-26 10:14:58 +01:00 committed by GitHub
commit 9fb2161131
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,10 +76,7 @@ namespace utils
void memory::free(void* data)
{
if (data)
{
std::free(data);
}
std::free(data);
}
void memory::free(const void* data)