Whitespace.
authorRui Ueyama <ruiu@google.com>
Wed, 13 Nov 2013 20:31:21 +0000 (20:31 +0000)
committerRui Ueyama <ruiu@google.com>
Wed, 13 Nov 2013 20:31:21 +0000 (20:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194605 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/Support/Path.cpp

index 070fb64aad57625472279b5aefc398def9bef628..7efaa5e5d531741f53127526a0b262b3878985da 100644 (file)
@@ -500,7 +500,7 @@ TEST_F(FileSystemTest, FileMapping) {
     mfr.data()[Val.size()] = 0;
     // Unmap temp file
   }
-  
+
   // Map it back in read-only
   fs::mapped_file_region mfr(Twine(TempPath),
                              fs::mapped_file_region::readonly,
@@ -508,10 +508,10 @@ TEST_F(FileSystemTest, FileMapping) {
                              0,
                              EC);
   ASSERT_NO_ERROR(EC);
-  
+
   // Verify content
   EXPECT_EQ(StringRef(mfr.const_data()), Val);
-  
+
   // Unmap temp file
 
 #if LLVM_HAS_RVALUE_REFERENCES