summaryrefslogtreecommitdiffstats
path: root/lib/Basic/CharInfo.cpp
diff options
context:
space:
mode:
authorJordan Rose <jordan_rose@apple.com>2013-02-08 22:37:49 +0000
committerJordan Rose <jordan_rose@apple.com>2013-02-08 22:37:49 +0000
commit799f3c13fbeacedda24549c41e72c07905208661 (patch)
tree919f246f368e0d3b252d25fd8e1913d160bee395 /lib/Basic/CharInfo.cpp
parent3f6f51e28231f65de9c2dd150a2d757b2162cfa3 (diff)
CharInfo: Add missing "using namespace clang::charinfo" in .cpp file.
Should fix the MSC bot. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174769 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/CharInfo.cpp')
-rw-r--r--lib/Basic/CharInfo.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Basic/CharInfo.cpp b/lib/Basic/CharInfo.cpp
index a1a4b390bf..32b3277c92 100644
--- a/lib/Basic/CharInfo.cpp
+++ b/lib/Basic/CharInfo.cpp
@@ -9,10 +9,11 @@
#include "clang/Basic/CharInfo.h"
+using namespace clang::charinfo;
+
// Statically initialize CharInfo table based on ASCII character set
// Reference: FreeBSD 7.2 /usr/share/misc/ascii
-const uint16_t clang::charinfo::InfoTable[256] =
-{
+const uint16_t clang::charinfo::InfoTable[256] = {
// 0 NUL 1 SOH 2 STX 3 ETX
// 4 EOT 5 ENQ 6 ACK 7 BEL
0 , 0 , 0 , 0 ,