mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
Fix this file to have the necessary standard library includes and use
the `std::` namespace. Should fix a number of build bots as well. llvm-svn: 340721
This commit is contained in:
parent
d748266c85
commit
9904fdc9ef
@ -12,9 +12,9 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "MicrosoftDemangleNodes.h"
|
||||
|
||||
#include "llvm/Demangle/Compiler.h"
|
||||
#include "llvm/Demangle/Utility.h"
|
||||
#include <cctype>
|
||||
|
||||
using namespace llvm;
|
||||
using namespace ms_demangle;
|
||||
@ -30,7 +30,7 @@ static void outputSpaceIfNecessary(OutputStream &OS) {
|
||||
return;
|
||||
|
||||
char C = OS.back();
|
||||
if (isalnum(C) || C == '>')
|
||||
if (std::isalnum(C) || C == '>')
|
||||
OS << " ";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user