diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-05-17 17:11:08 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-05-19 19:54:28 (GMT) |
commit | f1d55ff7e9372236ccf3da54397ed549a177b95a (patch) | |
tree | c9babe109ed99557251237d41e0548e3fbd1341b /Source/cmExtraEclipseCDT4Generator.cxx | |
parent | 9daa244e9904e3d80afa149c927a01413e2a6cd0 (diff) | |
download | CMake-f1d55ff7e9372236ccf3da54397ed549a177b95a.zip CMake-f1d55ff7e9372236ccf3da54397ed549a177b95a.tar.gz CMake-f1d55ff7e9372236ccf3da54397ed549a177b95a.tar.bz2 |
style: use `cmStrCat` in some more locations
Diffstat (limited to 'Source/cmExtraEclipseCDT4Generator.cxx')
-rw-r--r-- | Source/cmExtraEclipseCDT4Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExtraEclipseCDT4Generator.cxx b/Source/cmExtraEclipseCDT4Generator.cxx index d9d5a4b..ba4b326 100644 --- a/Source/cmExtraEclipseCDT4Generator.cxx +++ b/Source/cmExtraEclipseCDT4Generator.cxx @@ -737,7 +737,7 @@ void cmExtraEclipseCDT4Generator::CreateCProjectFile() const // exclude source directory from output search path // - only if not named the same as an output directory if (!cmSystemTools::FileIsDirectory( - std::string(this->HomeOutputDirectory + "/" + p))) { + cmStrCat(this->HomeOutputDirectory, '/', p))) { excludeFromOut += p + "/|"; } } |