cmGeneratorTarget: use a character literal

This commit is contained in:
Ben Boeckel
2023-09-26 08:50:33 -04:00
parent 9575e6f57b
commit 681a763425

View File

@@ -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()) {