From 7374bcf34f5015eec4615cdcbe0e2404131f38e5 Mon Sep 17 00:00:00 2001 From: Par Winzell Date: Wed, 12 Dec 2018 12:46:45 -0800 Subject: [PATCH] No default argument in implementation. --- src/utils/File_Utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/File_Utils.cpp b/src/utils/File_Utils.cpp index 07db593..ad045c6 100644 --- a/src/utils/File_Utils.cpp +++ b/src/utils/File_Utils.cpp @@ -184,7 +184,7 @@ namespace FileUtils { return true; } - bool CopyFile(const std::string &srcFilename, const std::string &dstFilename, bool createPath = false) { + bool CopyFile(const std::string &srcFilename, const std::string &dstFilename, bool createPath) { std::ifstream srcFile(srcFilename, std::ios::binary); if (!srcFile) { fmt::printf("Warning: Couldn't open file %s for reading.\n", srcFilename);