aboutsummaryrefslogtreecommitdiff
path: root/unittests/ADT/FoldingSet.cpp
diff options
context:
space:
mode:
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);