File tree Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Original file line number Diff line number Diff line change @@ -254,32 +254,6 @@ FLEXT_TEMPIMPL(void FLEXT_CLASSDEF(flext_root))::FreeAligned(void *blk)
254
254
}
255
255
}
256
256
257
- // ------------------------------------------
258
-
259
- #if defined(FLEXT_USE_CMEM)
260
- // define global new/delete operators
261
- void *operator new (size_t bytes) NEWTHROW
262
- {
263
- return flext_root::operator new (bytes);
264
- }
265
- void operator delete (void *blk) DELTHROW
266
- {
267
- flext_root::operator delete (blk);
268
- }
269
-
270
- #ifndef __MRC__ // doesn't allow new[] overloading?!
271
- void *operator new [](size_t bytes) NEWTHROW
272
- {
273
- return flext_root::operator new [](bytes);
274
- }
275
- void operator delete[] (void *blk) DELTHROW
276
- {
277
- flext_root::operator delete[] (blk);
278
- }
279
- #endif
280
-
281
- #endif // FLEXT_USE_CMEM
282
- // ------------------------------------------
283
257
284
258
/* ! \todo there is probably also a shortcut for Max and jMax
285
259
\todo size checking
You can’t perform that action at this time.
0 commit comments