mirror of
https://github.com/RPCS3/llvm.git
synced 2025-03-05 00:59:19 +00:00
[llvm-ar] Remove unneeded std::, NFCI.
This makes it more consistent with other exit() calls in llvm-ar (and the tools in general). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299549 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6edf98cd9d
commit
cfe642f7ae
@ -168,7 +168,7 @@ LLVM_ATTRIBUTE_NORETURN static void
|
||||
show_help(const std::string &msg) {
|
||||
errs() << ToolName << ": " << msg << "\n\n";
|
||||
cl::PrintHelpMessage();
|
||||
std::exit(1);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// Extract the member filename from the command line for the [relpos] argument
|
||||
@ -465,7 +465,7 @@ static void performReadOperation(ArchiveOperation Operation,
|
||||
return;
|
||||
for (StringRef Name : Members)
|
||||
errs() << Name << " was not found\n";
|
||||
std::exit(1);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
static void addMember(std::vector<NewArchiveMember> &Members,
|
||||
|
Loading…
x
Reference in New Issue
Block a user