Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFormerLurker <hochgebe@gmail.com>2020-10-24 20:02:25 +0300
committerFormerLurker <hochgebe@gmail.com>2020-10-24 20:02:25 +0300
commitb223bc9fea6bad9c0c4d0e86662f5c4c0de513c2 (patch)
tree6a864a02a93df50c388caf5bd8dc7db76fddc602 /ArcWelderConsole
parentb707bb51b5171c72cc6e24ff6b32115ca1febeae (diff)
Move segmented_shape default params to .h. Fix compiler warnings.
Diffstat (limited to 'ArcWelderConsole')
-rw-r--r--ArcWelderConsole/ArcWelderConsole.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ArcWelderConsole/ArcWelderConsole.cpp b/ArcWelderConsole/ArcWelderConsole.cpp
index a0e2567..6354742 100644
--- a/ArcWelderConsole/ArcWelderConsole.cpp
+++ b/ArcWelderConsole/ArcWelderConsole.cpp
@@ -152,7 +152,7 @@ int main(int argc, char* argv[])
if (source_file_path == target_file_path)
{
overwrite_source_file = true;
- if (!utilities::get_temp_file_path_for_file(source_file_path, target_file_path));
+ if (!utilities::get_temp_file_path_for_file(source_file_path, target_file_path))
{
log_messages << "The source and target path are the same, but a temporary file path could not be created. Is the path empty?";
p_logger->log(0, INFO, log_messages.str());