We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb104f9 commit 7249571Copy full SHA for 7249571
src/ccutil/fileio.cpp
@@ -87,7 +87,7 @@ std::string File::JoinPath(const std::string& prefix, const std::string& suffix)
87
88
bool File::Delete(const char* pathname) {
89
#if !defined(_WIN32) || defined(__MINGW32__)
90
- const int status = unlink(pathname)
+ const int status = unlink(pathname);
91
#else
92
const int status = _unlink(pathname);
93
#endif
0 commit comments