mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
Use the C++, more portable, deleter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7483 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4181a4fb4f
commit
794a58ed19
@ -20,7 +20,7 @@
|
|||||||
/// removeFile - Delete the specified file
|
/// removeFile - Delete the specified file
|
||||||
///
|
///
|
||||||
void removeFile(const std::string &Filename) {
|
void removeFile(const std::string &Filename) {
|
||||||
unlink(Filename.c_str());
|
std::remove(Filename.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getUniqueFilename - Return a filename with the specified prefix. If the
|
/// getUniqueFilename - Return a filename with the specified prefix. If the
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
/// removeFile - Delete the specified file
|
/// removeFile - Delete the specified file
|
||||||
///
|
///
|
||||||
void removeFile(const std::string &Filename) {
|
void removeFile(const std::string &Filename) {
|
||||||
unlink(Filename.c_str());
|
std::remove(Filename.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getUniqueFilename - Return a filename with the specified prefix. If the
|
/// getUniqueFilename - Return a filename with the specified prefix. If the
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
/// removeFile - Delete the specified file
|
/// removeFile - Delete the specified file
|
||||||
///
|
///
|
||||||
void removeFile(const std::string &Filename) {
|
void removeFile(const std::string &Filename) {
|
||||||
unlink(Filename.c_str());
|
std::remove(Filename.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getUniqueFilename - Return a filename with the specified prefix. If the
|
/// getUniqueFilename - Return a filename with the specified prefix. If the
|
||||||
|
Loading…
Reference in New Issue
Block a user