summaryrefslogtreecommitdiff
path: root/unittests/ADT/FoldingSet.cpp
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2015-12-30 11:46:15 +0000
committerDimitry Andric <dim@FreeBSD.org>2015-12-30 11:46:15 +0000
commitdd58ef019b700900793a1eb48b52123db01b654e (patch)
treefcfbb4df56a744f4ddc6122c50521dd3f1c5e196 /unittests/ADT/FoldingSet.cpp
parent2fe5752e3a7c345cdb59e869278d36af33c13fa4 (diff)
Notes
Diffstat (limited to 'unittests/ADT/FoldingSet.cpp')
-rw-r--r--unittests/ADT/FoldingSet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/ADT/FoldingSet.cpp b/unittests/ADT/FoldingSet.cpp
index a18a0df95716..5addf27e1363 100644
--- a/unittests/ADT/FoldingSet.cpp
+++ b/unittests/ADT/FoldingSet.cpp
@@ -24,11 +24,11 @@ TEST(FoldingSetTest, UnalignedStringTest) {
SCOPED_TRACE("UnalignedStringTest");
FoldingSetNodeID a, b;
- // An aligned string
+ // An aligned string.
std::string str1= "a test string";
a.AddString(str1);
- // An unaligned string
+ // An unaligned string.
std::string str2 = ">" + str1;
b.AddString(str2.c_str() + 1);