forked from organicmaps/organicmaps
Compilation fixes.
This commit is contained in:
parent
0b8c44e2d6
commit
3adf3e2bea
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ extern "C"
|
|||
|
||||
// Copy all needed files.
|
||||
for (size_t i = 0; i < files.size(); ++i)
|
||||
if (!my::CopyFile(from + files[i], to + files[i]))
|
||||
if (!my::CopyFileX(from + files[i], to + files[i]))
|
||||
{
|
||||
// Do the undo - delete all previously copied files.
|
||||
for (size_t j = 0; j <= i; ++j)
|
||||
|
|
|
@ -22,7 +22,7 @@ string GetNativeSeparator()
|
|||
{
|
||||
#ifdef OMIM_OS_WINDOWS
|
||||
return "\\";
|
||||
#elif
|
||||
#else
|
||||
return "/";
|
||||
#endif;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue