summaryrefslogtreecommitdiff
path: root/unittests/Support
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2013-09-11 00:53:07 +0000
committerRui Ueyama <ruiu@google.com>2013-09-11 00:53:07 +0000
commite9cf283e081cb68f0276aa4b893f290b9c26a0c7 (patch)
tree7ee3812cd40bc194edc4e4b81afa42116b66ba3d /unittests/Support
parent7dfa4bc4716aaa34cc7c6226fd00675899263e9d (diff)
downloadllvm-e9cf283e081cb68f0276aa4b893f290b9c26a0c7.tar.gz
llvm-e9cf283e081cb68f0276aa4b893f290b9c26a0c7.tar.bz2
llvm-e9cf283e081cb68f0276aa4b893f290b9c26a0c7.tar.xz
Remove trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190472 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Support')
-rw-r--r--unittests/Support/YAMLIOTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/unittests/Support/YAMLIOTest.cpp b/unittests/Support/YAMLIOTest.cpp
index 9da16c6ed6..8ae05f4b60 100644
--- a/unittests/Support/YAMLIOTest.cpp
+++ b/unittests/Support/YAMLIOTest.cpp
@@ -657,9 +657,9 @@ TEST(YAMLIO, TestReadWriteMyFlowSequence) {
map.numbers.push_back(1024);
llvm::raw_string_ostream ostr(intermediate);
- Output yout(ostr);
+ Output yout(ostr);
yout << map;
-
+
// Verify sequences were written in flow style
ostr.flush();
llvm::StringRef flowOut(intermediate);
@@ -1403,7 +1403,7 @@ TEST(YAMLIO, SequenceElideTest) {
Input yin(intermediate);
OptionalTestSeq Seq2;
yin >> Seq2;
-
+
EXPECT_FALSE(yin.error());
EXPECT_EQ(4UL, Seq2.Tests.size());