summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorExpressionLexer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmGeneratorExpressionLexer.h')
-rw-r--r--Source/cmGeneratorExpressionLexer.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/Source/cmGeneratorExpressionLexer.h b/Source/cmGeneratorExpressionLexer.h
index 16f2794..72ad731 100644
--- a/Source/cmGeneratorExpressionLexer.h
+++ b/Source/cmGeneratorExpressionLexer.h
@@ -18,11 +18,14 @@
struct cmGeneratorExpressionToken
{
- cmGeneratorExpressionToken(unsigned type, const char *c, size_t l)
- : TokenType(type), Content(c), Length(l)
+ cmGeneratorExpressionToken(unsigned type, const char* c, size_t l)
+ : TokenType(type)
+ , Content(c)
+ , Length(l)
{
}
- enum {
+ enum
+ {
Text,
BeginExpression,
EndExpression,
@@ -30,7 +33,7 @@ struct cmGeneratorExpressionToken
CommaSeparator
};
unsigned TokenType;
- const char *Content;
+ const char* Content;
size_t Length;
};