summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorExpressionEvaluator.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-08-25 21:25:09 (GMT)
committerBrad King <brad.king@kitware.com>2017-08-30 15:07:05 (GMT)
commit2b4c32c95f9cd3282ee834a2d7eeba9ab56eff0b (patch)
tree23d2e31296e0d358290e976d9341e3c1b227c484 /Source/cmGeneratorExpressionEvaluator.h
parent82d9bbf2b713de4db2810c202db26c4b18a22e9c (diff)
downloadCMake-2b4c32c95f9cd3282ee834a2d7eeba9ab56eff0b.zip
CMake-2b4c32c95f9cd3282ee834a2d7eeba9ab56eff0b.tar.gz
CMake-2b4c32c95f9cd3282ee834a2d7eeba9ab56eff0b.tar.bz2
clang-format: format all code as Cpp11
Diffstat (limited to 'Source/cmGeneratorExpressionEvaluator.h')
-rw-r--r--Source/cmGeneratorExpressionEvaluator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGeneratorExpressionEvaluator.h b/Source/cmGeneratorExpressionEvaluator.h
index a7e5f6f..cdf89d7 100644
--- a/Source/cmGeneratorExpressionEvaluator.h
+++ b/Source/cmGeneratorExpressionEvaluator.h
@@ -71,7 +71,7 @@ struct GeneratorExpressionContent : public cmGeneratorExpressionEvaluator
}
void SetParameters(
- std::vector<std::vector<cmGeneratorExpressionEvaluator*> > const&
+ std::vector<std::vector<cmGeneratorExpressionEvaluator*>> const&
parameters)
{
this->ParamChildren = parameters;
@@ -100,12 +100,12 @@ private:
const cmGeneratorExpressionNode* node, const std::string& identifier,
cmGeneratorExpressionContext* context,
cmGeneratorExpressionDAGChecker* dagChecker,
- std::vector<std::vector<cmGeneratorExpressionEvaluator*> >::const_iterator
+ std::vector<std::vector<cmGeneratorExpressionEvaluator*>>::const_iterator
pit) const;
private:
std::vector<cmGeneratorExpressionEvaluator*> IdentifierChildren;
- std::vector<std::vector<cmGeneratorExpressionEvaluator*> > ParamChildren;
+ std::vector<std::vector<cmGeneratorExpressionEvaluator*>> ParamChildren;
const char* StartContent;
size_t ContentLength;
};