Fix another implicit conversion in the directory watcher

This commit is contained in:
Jonas Devlieghere 2020-01-28 15:28:13 -08:00
parent 05c19705d8
commit 43a1c80508
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ llvm::Expected<std::unique_ptr<DirectoryWatcher>> clang::DirectoryWatcher::creat
// We need to copy the data so the lifetime is ok after a const copy is made
// for the block.
const std::string CopiedPath = Path;
const std::string CopiedPath = Path.str();
auto InitWork = ^{
// We need to start watching the directory before we start scanning in order