diff options
Diffstat (limited to 'zencore/filesystem.cpp')
| -rw-r--r-- | zencore/filesystem.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/zencore/filesystem.cpp b/zencore/filesystem.cpp index 878d20c42..95b92277b 100644 --- a/zencore/filesystem.cpp +++ b/zencore/filesystem.cpp @@ -452,7 +452,8 @@ CloneFile(std::filesystem::path FromPath, std::filesystem::path ToPath) return false; #elif ZEN_PLATFORM_MAC /* clonefile() syscall if APFS */ -# error not implemented + ZEN_UNUSED(FromPath, ToPath); + ZEN_ERROR("CloneFile() is not implemented on this platform"); return false; #endif // ZEN_PLATFORM_WINDOWS } |