We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1404e35 commit 01fff54Copy full SHA for 01fff54
src/nbl/system/ISystem.cpp
@@ -122,7 +122,7 @@ bool ISystem::deleteDirectory(const system::path& p)
122
123
bool nbl::system::ISystem::deleteFile(const system::path& p)
124
{
125
- if (std::filesystem::exists(p) && !std::filesystem::is_directory(p)))
+ if (std::filesystem::exists(p) && !std::filesystem::is_directory(p))
126
return std::filesystem::remove(p);
127
else
128
return false;
0 commit comments