From fac9f07f301250c9cd0b3f198e600acd4174126b Mon Sep 17 00:00:00 2001 From: Arsentiy Milchakov Date: Wed, 26 Feb 2020 10:43:33 +0300 Subject: [PATCH] debug build is fixed --- topography_generator/utils/contours_serdes.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topography_generator/utils/contours_serdes.hpp b/topography_generator/utils/contours_serdes.hpp index 1143f9cea3..c5f25d18b7 100644 --- a/topography_generator/utils/contours_serdes.hpp +++ b/topography_generator/utils/contours_serdes.hpp @@ -118,7 +118,7 @@ bool SaveContrours(std::string const & filePath, return false; } base::DeleteFileX(filePath); - VERIFY(base::RenameFileX(tmpFilePath, filePath), (fileTmp, file)); + VERIFY(base::RenameFileX(tmpFilePath, filePath), (tmpFilePath, filePath)); return true; }