mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-18 01:31:04 -05:00
cmGeneratorTarget: use a character literal
This commit is contained in:
@@ -1298,7 +1298,7 @@ bool cmGeneratorTarget::IsSystemIncludeDirectory(
|
||||
config_upper = cmSystemTools::UpperCase(config);
|
||||
}
|
||||
|
||||
std::string key = cmStrCat(config_upper, "/", language);
|
||||
std::string key = cmStrCat(config_upper, '/', language);
|
||||
auto iter = this->SystemIncludesCache.find(key);
|
||||
|
||||
if (iter == this->SystemIncludesCache.end()) {
|
||||
|
||||
Reference in New Issue
Block a user