aboutsummaryrefslogtreecommitdiff
path: root/lib/System/Win32/Path.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-13 18:41:28 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-13 18:41:28 +0000
commit79fc9249574cee0ec69d920e5a16497ba799020a (patch)
tree254007bc813b01517db912dd4641b018f0aae860 /lib/System/Win32/Path.cpp
parent2923f345334432ec8407aebd1ece560a531e9e08 (diff)
Genericize implementation of GetDLLSuffix now that we have LTDL_SHLIB_EXT
available. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18904 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Win32/Path.cpp')
-rw-r--r--lib/System/Win32/Path.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/System/Win32/Path.cpp b/lib/System/Win32/Path.cpp
index 8201dd4ab2..e847154e58 100644
--- a/lib/System/Win32/Path.cpp
+++ b/lib/System/Win32/Path.cpp
@@ -118,11 +118,6 @@ Path::GetRootDirectory() {
return result;
}
-std::string
-Path::GetDLLSuffix() {
- return "dll";
-}
-
static void getPathList(const char*path, std::vector<sys::Path>& Paths) {
const char* at = path;
const char* delim = strchr(at, ';');