[clang-tidy] Don't duplicate the leading slash.
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@243265 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
6e44d3b7e5
Коммит
33bc520278
|
@ -29,7 +29,7 @@ static std::string cleanPath(StringRef Path) {
|
|||
// Drop the last component.
|
||||
NewPath.resize(llvm::sys::path::parent_path(NewPath).size());
|
||||
} else {
|
||||
if (!NewPath.empty())
|
||||
if (!NewPath.empty() && !NewPath.endswith("/"))
|
||||
NewPath += '/';
|
||||
NewPath += *I;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче