Fix initialization order warning.

And constify while I'm at it.
This commit is contained in:
Stephen Kelly
2012-09-14 15:50:18 +02:00
parent c44d1fcb68
commit ebf932d2e0

View File

@@ -45,14 +45,14 @@ public:
std::vector<cmGeneratorExpressionToken> Tokenize(const char *input);
bool GetSawGeneratorExpression()
bool GetSawGeneratorExpression() const
{
return this->SawGeneratorExpression;
}
private:
bool SawGeneratorExpression;
bool SawBeginExpression;
bool SawGeneratorExpression;
};
#endif