diff options
| author | Martin Ridgers <[email protected]> | 2021-10-25 14:18:45 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-10-25 22:50:43 +0200 |
| commit | 582f73590d540e0c9a8ebf35ea6859aa47d2b45d (patch) | |
| tree | 5e3c8c6080b868018dec737fad93dc027470745e /zencore/filesystem.cpp | |
| parent | Deleted unused variable (diff) | |
| download | zen-582f73590d540e0c9a8ebf35ea6859aa47d2b45d.tar.xz zen-582f73590d540e0c9a8ebf35ea6859aa47d2b45d.zip | |
Added some ZEN_UNUSED() statements for yet-to-be-implemented functions
Diffstat (limited to 'zencore/filesystem.cpp')
| -rw-r--r-- | zencore/filesystem.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/zencore/filesystem.cpp b/zencore/filesystem.cpp index 8b040b3b2..0f74b44c4 100644 --- a/zencore/filesystem.cpp +++ b/zencore/filesystem.cpp @@ -245,6 +245,7 @@ SupportsBlockRefCounting(std::filesystem::path Path) return true; #else + ZEN_UNUSED(Path); return false; #endif // ZEN_PLATFORM_WINDOWS } @@ -408,6 +409,7 @@ CloneFile(std::filesystem::path FromPath, std::filesystem::path ToPath) return AllOk; #else + ZEN_UNUSED(FromPath, ToPath); ZEN_ERROR("CloneFile() is not implemented on this platform"); return false; #endif // ZEN_PLATFORM_WINDOWS |