Skip to content

remove global new/delete operators for CMEM #55

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions source/flsupport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -254,32 +254,6 @@ FLEXT_TEMPIMPL(void FLEXT_CLASSDEF(flext_root))::FreeAligned(void *blk)
}
}

// ------------------------------------------

#if defined(FLEXT_USE_CMEM)
// define global new/delete operators
void *operator new(size_t bytes) NEWTHROW
{
return flext_root::operator new(bytes);
}
void operator delete(void *blk) DELTHROW
{
flext_root::operator delete(blk);
}

#ifndef __MRC__ // doesn't allow new[] overloading?!
void *operator new[](size_t bytes) NEWTHROW
{
return flext_root::operator new[](bytes);
}
void operator delete[](void *blk) DELTHROW
{
flext_root::operator delete[](blk);
}
#endif

#endif // FLEXT_USE_CMEM
// ------------------------------------------

/*! \todo there is probably also a shortcut for Max
\todo size checking
Expand Down