aboutsummaryrefslogtreecommitdiff
path: root/zencore/filesystem.cpp
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2021-10-25 14:18:45 +0200
committerMartin Ridgers <[email protected]>2021-10-25 22:50:43 +0200
commit582f73590d540e0c9a8ebf35ea6859aa47d2b45d (patch)
tree5e3c8c6080b868018dec737fad93dc027470745e /zencore/filesystem.cpp
parentDeleted unused variable (diff)
downloadzen-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.cpp2
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