summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2013-11-13 20:31:21 +0000
committerRui Ueyama <ruiu@google.com>2013-11-13 20:31:21 +0000
commite0573aab49d3835362d4f5e12cead20276ef4739 (patch)
tree5d9bb4e196ee57220dc67997286d1ee98e9ea5d4 /unittests
parent7adae8e795504660ba68bd7e44db8deaf1721630 (diff)
downloadllvm-e0573aab49d3835362d4f5e12cead20276ef4739.tar.gz
llvm-e0573aab49d3835362d4f5e12cead20276ef4739.tar.bz2
llvm-e0573aab49d3835362d4f5e12cead20276ef4739.tar.xz
Whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194605 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Support/Path.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/unittests/Support/Path.cpp b/unittests/Support/Path.cpp
index 070fb64aad..7efaa5e5d5 100644
--- a/unittests/Support/Path.cpp
+++ b/unittests/Support/Path.cpp
@@ -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