// ====================================================================== // \title Os/Darwin/DefaultMemory.cpp // \brief sets default Os::Memory to Darwin implementation via linker // ====================================================================== #include "Os/Darwin/Memory.hpp" #include "Os/Delegate.hpp" #include "Os/Memory.hpp" namespace Os { MemoryInterface* MemoryInterface::getDelegate(MemoryHandleStorage& aligned_new_memory) { return Os::Delegate::makeDelegate(aligned_new_memory); } } // namespace Os