1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

RemoveFileOnSignal is now in sys:: namespace

llvm-svn: 16103
This commit is contained in:
Nate Begeman 2004-08-29 22:01:17 +00:00
parent efbdaad4b7
commit f0d859996e

View File

@ -135,7 +135,7 @@ int main(int argc, char **argv)
Out = new std::ofstream(OutputFilename.c_str());
// Make sure that the Out file gets unlinked from the disk if we get a
// SIGINT
RemoveFileOnSignal(OutputFilename);
sys::RemoveFileOnSignal(OutputFilename);
}
}