[iOS] Fixed linker warning.

Signed-off-by: vng <viktor.govako@gmail.com>
This commit is contained in:
vng 2021-03-21 13:04:19 +03:00 committed by Viktor Govako
parent 9129844746
commit 48702bdb3d

View file

@ -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