diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-05 22:15:36 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-05 22:15:36 +0000 |
commit | 0c6a283b2ab8f921e30686984ccfa89c07296d3e (patch) | |
tree | 069e034ed48d654007c6d8a0287c653cbf7daa37 /llvm/lib/System/Win32/Program.cpp | |
parent | ed3f95892de3b192e52059361463db208bc1b218 (diff) | |
download | bcm5719-llvm-0c6a283b2ab8f921e30686984ccfa89c07296d3e.tar.gz bcm5719-llvm-0c6a283b2ab8f921e30686984ccfa89c07296d3e.zip |
Stop propagating method names that violate the coding standard
llvm-svn: 17498
Diffstat (limited to 'llvm/lib/System/Win32/Program.cpp')
-rw-r--r-- | llvm/lib/System/Win32/Program.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/System/Win32/Program.cpp b/llvm/lib/System/Win32/Program.cpp index a83f0e84f8e..0078fb76628 100644 --- a/llvm/lib/System/Win32/Program.cpp +++ b/llvm/lib/System/Win32/Program.cpp @@ -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; |