13 lines
255 B
C++
13 lines
255 B
C++
/* AllocPolicy.cpp
|
|
*
|
|
* author: Roland Conybeare, Jul 2025
|
|
*/
|
|
|
|
#include "AllocPolicy.hpp"
|
|
|
|
/* note: inline/.hpp definition not allowed for operator delete */
|
|
void operator delete(void * ptr) noexcept {
|
|
xo::xo.free(ptr);
|
|
}
|
|
|
|
/* end AllocPolicy.cpp */
|