Skip to content

Commit

Permalink
:<
Browse files Browse the repository at this point in the history
  • Loading branch information
CelestialAmber committed Aug 2, 2024
1 parent 32dbfec commit ffa6996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/monolib/src/MemManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,12 +319,12 @@ void* operator new(u32 arg0) {
return 0;
}

void operator delete(void* p) {
void operator delete(void* p) throw() {
mtl::deallocate(p);
}



void operator delete[](void* p) {
void operator delete[](void* p) throw() {
mtl::deallocate(p);
}

0 comments on commit ffa6996

Please sign in to comment.