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 | 07adb2836b8aa7a3872e33c285958f5937662b50 (patch) | |
tree | 9a68836881a4c9d0c8c33ba18a3fc310aac3aed3 /tools/llvm-ld/Linker.cpp | |
parent | 6c4d9e566f60be60db105c220626bf31bf3ce450 (diff) |
Stop propagating method names that violate the coding standard
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17498 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-ld/Linker.cpp')
-rw-r--r-- | tools/llvm-ld/Linker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-ld/Linker.cpp b/tools/llvm-ld/Linker.cpp index 9d1999517f..af2c0546f3 100644 --- a/tools/llvm-ld/Linker.cpp +++ b/tools/llvm-ld/Linker.cpp @@ -45,7 +45,7 @@ std::string llvm::FindLib(const std::string &Filename, bool SharedObjectOnly) { // Determine if the pathname can be found as it stands. sys::Path FilePath; - if (FilePath.set_file(Filename) && FilePath.readable()) + if (FilePath.setFile(Filename) && FilePath.readable()) return Filename; // Ask the System Path object to locate the library. This ensures that |