summaryrefslogtreecommitdiff
path: root/lib/System/Unix
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2010-11-02 22:18:37 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2010-11-02 22:18:37 +0000
commitbd6e0323b94361559e125b07cb244629b0da0281 (patch)
tree20edcd2bac3083804311db31740c9ecd913e373d /lib/System/Unix
parented724fd43a2388f93460ca397c69948d346ec4db (diff)
downloadllvm-bd6e0323b94361559e125b07cb244629b0da0281.tar.gz
llvm-bd6e0323b94361559e125b07cb244629b0da0281.tar.bz2
llvm-bd6e0323b94361559e125b07cb244629b0da0281.tar.xz
appendSuffix: don't append a dot when the suffix is empty.
Additionally, move the implementation of appendSuffix to Path.cpp: it is platform-independent. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118089 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix')
-rw-r--r--lib/System/Unix/Path.inc12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc
index 15588689f9..b1d2ad2446 100644
--- a/lib/System/Unix/Path.inc
+++ b/lib/System/Unix/Path.inc
@@ -638,18 +638,6 @@ Path::eraseComponent() {
}
bool
-Path::appendSuffix(StringRef suffix) {
- std::string save(path);
- path.append(".");
- path.append(suffix);
- if (!isValid()) {
- path = save;
- return false;
- }
- return true;
-}
-
-bool
Path::eraseSuffix() {
std::string save = path;
size_t dotpos = path.rfind('.',path.size());