Skip to content

Commit

Permalink
Remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell committed Apr 26, 2024
1 parent bdf9e07 commit 95014a2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion source/utils/MemoryUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class MemoryWrapper {
}
~MemoryWrapper() {
if (mPtr && mFreeFn) {
DEBUG_FUNCTION_LINE_ERR("Free memory wrapper for %08X %d", mPtr, mSize);
memset(mPtr, 0, mSize);
mFreeFn(mPtr);
}
Expand Down

0 comments on commit 95014a2

Please sign in to comment.