summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-08-07 15:45:02 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-08-07 15:54:53 (GMT)
commitbbf4a5771f8113ce5b88968c4dd3def2fbcd9354 (patch)
treef24c69250b525f26c2d0cb100468f74d08bccabb /Source/cmSystemTools.cxx
parentdd53122be5b142e97ac02d1dec62719db29bc39e (diff)
parent18b0330b86cae2771a54021e390f157a097c8a99 (diff)
downloadCMake-bbf4a5771f8113ce5b88968c4dd3def2fbcd9354.zip
CMake-bbf4a5771f8113ce5b88968c4dd3def2fbcd9354.tar.gz
CMake-bbf4a5771f8113ce5b88968c4dd3def2fbcd9354.tar.bz2
Merge topic 'tidy_inefficient_string'
18b0330b86 clang-tidy: Enable performance-inefficient-string-concatenation Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3648
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index aed787e..7baf5ed 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -801,7 +801,7 @@ std::string cmSystemTools::FileExistsInParentDirectories(
cmSystemTools::ConvertToUnixSlashes(dir);
std::string prevDir;
while (dir != prevDir) {
- std::string path = dir + "/" + file;
+ std::string path = cmStrCat(dir, "/", file);
if (cmSystemTools::FileExists(path)) {
return path;
}