mirror of
https://github.com/Kitware/CMake.git
synced 2026-07-26 03:04:21 +00:00
Fix initialization order warning.
And constify while I'm at it.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user