diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2019-08-07 14:44:40 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2019-08-07 14:44:40 +0000 |
commit | 762bc3351f29b5a71dca31ddd114034a383ff0bd (patch) | |
tree | 017755428a2656945f8bbefcf080e61dcfff776c /clang/unittests/DirectoryWatcher | |
parent | a06155ddc4edb22f44425f2cf6a2038f4e4c4546 (diff) | |
download | bcm5719-llvm-762bc3351f29b5a71dca31ddd114034a383ff0bd.tar.gz bcm5719-llvm-762bc3351f29b5a71dca31ddd114034a383ff0bd.zip |
Remove LLVM mutexes from clang in favor of std::mutex
None of those need to be recursive mutexes. No functionality change
intended.
llvm-svn: 368173
Diffstat (limited to 'clang/unittests/DirectoryWatcher')
-rw-r--r-- | clang/unittests/DirectoryWatcher/DirectoryWatcherTest.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/unittests/DirectoryWatcher/DirectoryWatcherTest.cpp b/clang/unittests/DirectoryWatcher/DirectoryWatcherTest.cpp index 485f0eeab05..6dc9ab994c9 100644 --- a/clang/unittests/DirectoryWatcher/DirectoryWatcherTest.cpp +++ b/clang/unittests/DirectoryWatcher/DirectoryWatcherTest.cpp @@ -8,7 +8,6 @@ #include "clang/DirectoryWatcher/DirectoryWatcher.h" #include "llvm/Support/FileSystem.h" -#include "llvm/Support/Mutex.h" #include "llvm/Support/Path.h" #include "llvm/Support/raw_ostream.h" #include "gtest/gtest.h" |