diff options
author | Craig Topper <craig.topper@intel.com> | 2018-08-08 22:31:14 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-08-08 22:31:14 +0000 |
commit | 576ac05bbcc9e8c5e7a9bd99834020f10b99a341 (patch) | |
tree | 0a8cb2020889b8283739d69637b2fcf36f7daed7 /clang/unittests/Basic/VirtualFileSystemTest.cpp | |
parent | f95a6d93050458f967f4dd69b517bd852451b5c2 (diff) | |
download | llvm-576ac05bbcc9e8c5e7a9bd99834020f10b99a341.zip llvm-576ac05bbcc9e8c5e7a9bd99834020f10b99a341.tar.gz llvm-576ac05bbcc9e8c5e7a9bd99834020f10b99a341.tar.bz2 |
[VFS] Remove superfluous semicolon from unittest.
llvm-svn: 339296
Diffstat (limited to 'clang/unittests/Basic/VirtualFileSystemTest.cpp')
-rw-r--r-- | clang/unittests/Basic/VirtualFileSystemTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Basic/VirtualFileSystemTest.cpp b/clang/unittests/Basic/VirtualFileSystemTest.cpp index 22fbeac..23dbc57 100644 --- a/clang/unittests/Basic/VirtualFileSystemTest.cpp +++ b/clang/unittests/Basic/VirtualFileSystemTest.cpp @@ -158,7 +158,7 @@ std::string getPosixPath(std::string S) { SmallString<128> Result; llvm::sys::path::native(S, Result, llvm::sys::path::Style::posix); return Result.str(); -}; +} } // end anonymous namespace TEST(VirtualFileSystemTest, StatusQueries) { |