commit | f5a95ce0d42ddfac8a5a14701188e94ce5dc282f | [log] [tgz] |
---|---|---|
author | Mikhail Glushenkov <foldr@codedgers.com> | Tue Nov 02 20:32:26 2010 +0000 |
committer | Mikhail Glushenkov <foldr@codedgers.com> | Tue Nov 02 20:32:26 2010 +0000 |
tree | 1d7feff6996c3d403efbce512ccaa18daefe1cd6 | |
parent | 46388526963aba92344ee8ebd9e86d3556baa088 [diff] [blame] |
Path: Add GetEXESuffix() to complement GetDLLSuffix(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118042 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc index 4c97c4b..44c81a2 100644 --- a/lib/System/Unix/Path.inc +++ b/lib/System/Unix/Path.inc
@@ -78,6 +78,10 @@ const char sys::PathSeparator = ':'; +StringRef Path::GetEXESuffix() { + return ""; +} + Path::Path(StringRef p) : path(p) {}