From 48702bdb3d8fd5631cedcf7e426ccfa30eb9987a Mon Sep 17 00:00:00 2001 From: vng Date: Sun, 21 Mar 2021 13:04:19 +0300 Subject: [PATCH] [iOS] Fixed linker warning. Signed-off-by: vng --- platform/platform_unix_impl.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/platform/platform_unix_impl.cpp b/platform/platform_unix_impl.cpp index 931212244d..c40d8d9412 100644 --- a/platform/platform_unix_impl.cpp +++ b/platform/platform_unix_impl.cpp @@ -153,8 +153,10 @@ bool Platform::IsFileExistsByFullPath(string const & filePath) return stat(filePath.c_str(), &s) == 0; } +#if !defined(OMIM_OS_IPHONE) //static -void Platform::DisableBackupForFile(string const & filePath) {} +void Platform::DisableBackupForFile(string const & /*filePath*/) {} +#endif // static string Platform::GetCurrentWorkingDirectory() noexcept