mirror of
https://github.com/reactos/CMake.git
synced 2025-01-06 02:58:48 +00:00
cmTarget: help the optimizer a bit
This commit is contained in:
parent
679f3deeb7
commit
bcb6dbc1cb
@ -224,7 +224,7 @@ public:
|
||||
cmLinkImplItem cmTargetInternals::TargetPropertyEntry::NoLinkImplItem;
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
void deleteAndClear(
|
||||
static void deleteAndClear(
|
||||
std::vector<cmTargetInternals::TargetPropertyEntry*> &entries)
|
||||
{
|
||||
for (std::vector<cmTargetInternals::TargetPropertyEntry*>::const_iterator
|
||||
@ -238,7 +238,7 @@ void deleteAndClear(
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
void deleteAndClear(
|
||||
static void deleteAndClear(
|
||||
std::map<std::string,
|
||||
std::vector<cmTargetInternals::TargetPropertyEntry*> > &entries)
|
||||
{
|
||||
@ -2299,7 +2299,7 @@ static void processCompileOptionsInternal(cmTarget const* tgt,
|
||||
for(std::vector<std::string>::iterator
|
||||
li = entryOptions->begin(); li != entryOptions->end(); ++li)
|
||||
{
|
||||
std::string opt = *li;
|
||||
std::string const& opt = *li;
|
||||
|
||||
if(uniqueOptions.insert(opt).second)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user