PR Comments

This commit is contained in:
émeryc
2023-07-09 23:33:39 -04:00
parent a73f185f94
commit dca9096459
3 changed files with 11 additions and 5 deletions

View File

@@ -166,9 +166,9 @@ namespace Nuake
fileWriter.close();
}
int FileSystem::RemoveFile(char const* path)
int FileSystem::RemoveFile(const std::string& path)
{
return std::remove(path);
return std::remove(path.c_str());
}
Ref<Directory> FileSystem::GetFileTree()