No default argument in implementation.

This commit is contained in:
Par Winzell 2018-12-12 12:46:45 -08:00
parent f71be404f4
commit 7374bcf34f
1 changed files with 1 additions and 1 deletions

View File

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