Fix Windows buildbots.
authorRui Ueyama <ruiu@google.com>
Wed, 7 Dec 2016 20:31:46 +0000 (20:31 +0000)
committerRui Ueyama <ruiu@google.com>
Wed, 7 Dec 2016 20:31:46 +0000 (20:31 +0000)
llvm-svn: 288975

lld/lib/Core/Reproduce.cpp

index 50cc716..39b0e41 100644 (file)
@@ -119,7 +119,7 @@ std::string lld::stringize(opt::Arg *Arg) {
 
 std::string lld::convertToUnixPathSeparator(StringRef S) {
 #ifdef LLVM_ON_WIN32
-  std:string Ret = S.str();
+  std::string Ret = S.str();
   std::replace(Ret.begin(), Ret.end(), '\\', '/');
   return Ret;
 #else