diff options
author | Harlan Haskins <harlan@harlanhaskins.com> | 2019-08-01 21:58:56 +0000 |
---|---|---|
committer | Harlan Haskins <harlan@harlanhaskins.com> | 2019-08-01 21:58:56 +0000 |
commit | e86fffcd4489f4862a514a0fd85276b968313739 (patch) | |
tree | a50dc589f2260f38fb9ba01b52f4268d74653462 /clang/unittests/Basic/FileManagerTest.cpp | |
parent | 5341f79a90bb17dede6c8581f596424c3f248060 (diff) | |
download | llvm-e86fffcd4489f4862a514a0fd85276b968313739.zip llvm-e86fffcd4489f4862a514a0fd85276b968313739.tar.gz llvm-e86fffcd4489f4862a514a0fd85276b968313739.tar.bz2 |
Fix Windows branch of FileManagerTest changes
llvm-svn: 367622
Diffstat (limited to 'clang/unittests/Basic/FileManagerTest.cpp')
-rw-r--r-- | clang/unittests/Basic/FileManagerTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Basic/FileManagerTest.cpp b/clang/unittests/Basic/FileManagerTest.cpp index 77e1305..97b525e 100644 --- a/clang/unittests/Basic/FileManagerTest.cpp +++ b/clang/unittests/Basic/FileManagerTest.cpp @@ -163,7 +163,7 @@ TEST_F(FileManagerTest, getFileReturnsValidFileEntryForExistingRealFile) { file = manager.getFile(FileName); ASSERT_TRUE(file); - dir = file->getDir(); + dir = (*file)->getDir(); ASSERT_TRUE(dir != NULL); EXPECT_EQ(DirName, dir->getName()); #endif |