Merge topic 'unused-cleanup'
994dc70
Remove unused vector population.44258cc
Remove unused typedef.0a4d7d8
Remove unused marker for a variable which is now used.
This commit is contained in:
commit
e41ef3d339
|
@ -1183,7 +1183,6 @@ GeneratorExpressionContent::~GeneratorExpressionContent()
|
||||||
deleteAll(this->IdentifierChildren);
|
deleteAll(this->IdentifierChildren);
|
||||||
|
|
||||||
typedef std::vector<cmGeneratorExpressionEvaluator*> EvaluatorVector;
|
typedef std::vector<cmGeneratorExpressionEvaluator*> EvaluatorVector;
|
||||||
typedef std::vector<cmGeneratorExpressionToken> TokenVector;
|
|
||||||
std::vector<EvaluatorVector>::const_iterator pit =
|
std::vector<EvaluatorVector>::const_iterator pit =
|
||||||
this->ParamChildren.begin();
|
this->ParamChildren.begin();
|
||||||
const std::vector<EvaluatorVector>::const_iterator pend =
|
const std::vector<EvaluatorVector>::const_iterator pend =
|
||||||
|
|
|
@ -1084,8 +1084,6 @@ void
|
||||||
cmLocalGenerator::ExpandRuleVariables(std::string& s,
|
cmLocalGenerator::ExpandRuleVariables(std::string& s,
|
||||||
const RuleVariables& replaceValues)
|
const RuleVariables& replaceValues)
|
||||||
{
|
{
|
||||||
std::vector<std::string> enabledLanguages;
|
|
||||||
this->GlobalGenerator->GetEnabledLanguages(enabledLanguages);
|
|
||||||
this->InsertRuleLauncher(s, replaceValues.CMTarget,
|
this->InsertRuleLauncher(s, replaceValues.CMTarget,
|
||||||
replaceValues.RuleLauncher);
|
replaceValues.RuleLauncher);
|
||||||
std::string::size_type start = s.find('<');
|
std::string::size_type start = s.find('<');
|
||||||
|
|
|
@ -5319,7 +5319,6 @@ void cmTarget::ComputeImportInfo(std::string const& desired_config,
|
||||||
ImportInfo& info,
|
ImportInfo& info,
|
||||||
cmTarget *headTarget)
|
cmTarget *headTarget)
|
||||||
{
|
{
|
||||||
(void)headTarget;
|
|
||||||
// This method finds information about an imported target from its
|
// This method finds information about an imported target from its
|
||||||
// properties. The "IMPORTED_" namespace is reserved for properties
|
// properties. The "IMPORTED_" namespace is reserved for properties
|
||||||
// defined by the project exporting the target.
|
// defined by the project exporting the target.
|
||||||
|
|
Loading…
Reference in New Issue