mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-08-18 20:30:05 +02:00
Fix indentation (TAB -> SPACE in 2 cases).
This commit is contained in:
@@ -32,7 +32,7 @@ bool ConfigFile::locate(sys::Path& p, const char* argv0, void* mainAddr, const c
|
|||||||
// try the current working dir
|
// try the current working dir
|
||||||
p = sys::Path::GetCurrentDirectory();
|
p = sys::Path::GetCurrentDirectory();
|
||||||
p.appendComponent(filename);
|
p.appendComponent(filename);
|
||||||
if (sys::fs::exists(p.str()))
|
if (sys::fs::exists(p.str()))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
// user configuration
|
// user configuration
|
||||||
|
|||||||
@@ -362,8 +362,8 @@ void deleteExecutable()
|
|||||||
if (!gExePath.isEmpty())
|
if (!gExePath.isEmpty())
|
||||||
{
|
{
|
||||||
assert(gExePath.isValid());
|
assert(gExePath.isValid());
|
||||||
bool is_directory;
|
bool is_directory;
|
||||||
assert(!(!llvm::sys::fs::is_directory(gExePath.str(), is_directory) && is_directory));
|
assert(!(!llvm::sys::fs::is_directory(gExePath.str(), is_directory) && is_directory));
|
||||||
gExePath.eraseFromDisk(false);
|
gExePath.eraseFromDisk(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user