fprime/Os/Darwin/DefaultCpu.cpp
Thomas Boyer-Chammard 578e61f1da
Format Os Module (#3959)
* Format Os module

* Add Os to format-check CI

* Remove double semi-colon
2025-07-31 15:40:30 -07:00

14 lines
546 B
C++

// ======================================================================
// \title Os/Darwin/DefaultCpu.cpp
// \brief sets default Os::Cpu to Darwin implementation via linker
// ======================================================================
#include "Os/Cpu.hpp"
#include "Os/Darwin/Cpu.hpp"
#include "Os/Delegate.hpp"
namespace Os {
CpuInterface* CpuInterface::getDelegate(CpuHandleStorage& aligned_new_memory) {
return Os::Delegate::makeDelegate<CpuInterface, Os::Darwin::Cpu::DarwinCpu>(aligned_new_memory);
}
} // namespace Os