summaryrefslogtreecommitdiffstats
path: root/unittests
diff options
context:
space:
mode:
authorDylan Noblesmith <nobled@dreamwidth.org>2012-02-13 12:32:26 +0000
committerDylan Noblesmith <nobled@dreamwidth.org>2012-02-13 12:32:26 +0000
commit36d592718ff342f762e32cbde73d1113f88cb275 (patch)
tree88fa23ba7153037e08ac0600ee83467216f287dc /unittests
parent1e4c01b79273b9cd4e9e9ecfd3422df3900b8356 (diff)
drop more llvm:: prefixes on SmallString<>
More cleanup after r149799. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150380 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Basic/SourceManagerTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Basic/SourceManagerTest.cpp b/unittests/Basic/SourceManagerTest.cpp
index 588721189d..14f5b22a0c 100644
--- a/unittests/Basic/SourceManagerTest.cpp
+++ b/unittests/Basic/SourceManagerTest.cpp
@@ -97,7 +97,7 @@ TEST_F(SourceManagerTest, isBeforeInTranslationUnit) {
ASSERT_TRUE(macroExpStartLoc.isFileID());
ASSERT_TRUE(macroExpEndLoc.isFileID());
- llvm::SmallString<32> str;
+ SmallString<32> str;
ASSERT_EQ("M", PP.getSpelling(macroExpStartLoc, str));
ASSERT_EQ(")", PP.getSpelling(macroExpEndLoc, str));