Stop propagating method names that violate the coding standard
[oota-llvm.git] / lib / System / Win32 / Program.cpp
index a83f0e84f8e8eb99a68a5765ca5c926453b98c43..0078fb76628f44a9943a9870b2874ef5b7dd5bf3 100644 (file)
@@ -32,7 +32,7 @@ Program::FindProgramByName(const std::string& progName) {
   if (progName.length() == 0) // no program
     return Path();
   Path temp;
-  if (!temp.set_file(progName)) // invalid name
+  if (!temp.setFile(progName)) // invalid name
     return Path();
   if (temp.executable()) // already executable as is
     return temp;