forked from OSchip/llvm-project
Fix another implicit conversion in the directory watcher
This commit is contained in:
parent
05c19705d8
commit
43a1c80508
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue