Skip to content

Commit 01fff54

Browse files
committed
stash
Signed-off-by: Ali Cheraghi <alichraghi@proton.me>
1 parent 1404e35 commit 01fff54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nbl/system/ISystem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ bool ISystem::deleteDirectory(const system::path& p)
122122

123123
bool nbl::system::ISystem::deleteFile(const system::path& p)
124124
{
125-
if (std::filesystem::exists(p) && !std::filesystem::is_directory(p)))
125+
if (std::filesystem::exists(p) && !std::filesystem::is_directory(p))
126126
return std::filesystem::remove(p);
127127
else
128128
return false;

0 commit comments

Comments
 (0)