mirror of
https://github.com/Kitware/CMake.git
synced 2026-07-26 03:04:21 +00:00
Fix width of long line.
This commit is contained in:
@@ -464,12 +464,12 @@ std::string GeneratorExpressionContent::Evaluate(
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
static void deleteAll(const std::vector<cmGeneratorExpressionEvaluator*> &container)
|
||||
static void deleteAll(const std::vector<cmGeneratorExpressionEvaluator*> &c)
|
||||
{
|
||||
std::vector<cmGeneratorExpressionEvaluator*>::const_iterator it
|
||||
= container.begin();
|
||||
= c.begin();
|
||||
const std::vector<cmGeneratorExpressionEvaluator*>::const_iterator end
|
||||
= container.end();
|
||||
= c.end();
|
||||
for ( ; it != end; ++it)
|
||||
{
|
||||
delete *it;
|
||||
|
||||
Reference in New Issue
Block a user