subrepo: subdir: "xo-alloc" merged: "fc656313" upstream: origin: "git@github.com:Rconybea/xo-alloc.git" branch: "main" commit: "fc656313" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
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 */
|