1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Whitespace.

llvm-svn: 194605
This commit is contained in:
Rui Ueyama 2013-11-13 20:31:21 +00:00
parent f386ce44b5
commit 0c4d35a376

View 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