[lld] r288975 - Fix Windows buildbots.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 7 12:31:46 PST 2016


Author: ruiu
Date: Wed Dec  7 14:31:46 2016
New Revision: 288975

URL: http://llvm.org/viewvc/llvm-project?rev=288975&view=rev
Log:
Fix Windows buildbots.

Modified:
    lld/trunk/lib/Core/Reproduce.cpp

Modified: lld/trunk/lib/Core/Reproduce.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/Core/Reproduce.cpp?rev=288975&r1=288974&r2=288975&view=diff
==============================================================================
--- lld/trunk/lib/Core/Reproduce.cpp (original)
+++ lld/trunk/lib/Core/Reproduce.cpp Wed Dec  7 14:31:46 2016
@@ -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




More information about the llvm-commits mailing list