Fix build breakage on Win32.

llvm-svn: 365737
This commit is contained in:
Rui Ueyama 2019-07-11 06:56:44 +00:00
parent c593f5e671
commit 77565f7690
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ static std::future<MBErrPair> createFutureForFile(std::string path) {
#if _WIN32
// On Windows, file I/O is relatively slow so it is best to do this
// asynchronously.
auto Strategy = std::launch::async;
auto strategy = std::launch::async;
#else
auto strategy = std::launch::deferred;
#endif