1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +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:
Chandler Carruth 2018-08-27 06:52:14 +00:00
parent d748266c85
commit 9904fdc9ef

View File

@ -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 << " ";
}