mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
speedup: Cache strings for comparisons
This commit is contained in:
@@ -414,12 +414,13 @@ void cmExtraCodeBlocksGenerator
|
||||
std::string lang = (*si)->GetLanguage();
|
||||
if (lang == "C" || lang == "CXX")
|
||||
{
|
||||
std::string srcext = (*si)->GetExtension();
|
||||
for(std::vector<std::string>::const_iterator
|
||||
ext = mf->GetSourceExtensions().begin();
|
||||
ext != mf->GetSourceExtensions().end();
|
||||
++ext)
|
||||
{
|
||||
if ((*si)->GetExtension() == *ext)
|
||||
if (srcext == *ext)
|
||||
{
|
||||
isCFile = true;
|
||||
break;
|
||||
|
||||
@@ -223,12 +223,13 @@ void cmExtraCodeLiteGenerator
|
||||
std::string lang = (*si)->GetLanguage();
|
||||
if (lang == "C" || lang == "CXX")
|
||||
{
|
||||
std::string srcext = (*si)->GetExtension();
|
||||
for(std::vector<std::string>::const_iterator
|
||||
ext = mf->GetSourceExtensions().begin();
|
||||
ext != mf->GetSourceExtensions().end();
|
||||
++ext)
|
||||
{
|
||||
if ((*si)->GetExtension() == *ext)
|
||||
if (srcext == *ext)
|
||||
{
|
||||
isCFile = true;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user