diff options
author | Brad King <brad.king@kitware.com> | 2013-08-15 14:52:45 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-08-15 14:52:45 (GMT) |
commit | 8da09f6ee1a59cbef6327d2a88ab8ba5f8b29b1a (patch) | |
tree | 29d2dadf534144f7892cdce95020bcd1983e5264 /Source | |
parent | d4daaa54e846558aadc0c7e144cd792bc513ce05 (diff) | |
parent | 9040ec91173824b27dd946d7bd36cc9c07268d74 (diff) | |
download | CMake-8da09f6ee1a59cbef6327d2a88ab8ba5f8b29b1a.zip CMake-8da09f6ee1a59cbef6327d2a88ab8ba5f8b29b1a.tar.gz CMake-8da09f6ee1a59cbef6327d2a88ab8ba5f8b29b1a.tar.bz2 |
Merge topic 'cmake-syntax'
9040ec9 Do not warn about left paren not separated by a space
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmListFileCache.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmListFileCache.cxx b/Source/cmListFileCache.cxx index c02866c..898f379 100644 --- a/Source/cmListFileCache.cxx +++ b/Source/cmListFileCache.cxx @@ -287,8 +287,8 @@ bool cmListFileParser::ParseFunction(const char* name, long line) if(token->type == cmListFileLexer_Token_ParenLeft) { parenDepth++; - this->AddArgument(token, cmListFileArgument::Unquoted); this->Separation = SeparationOkay; + this->AddArgument(token, cmListFileArgument::Unquoted); } else if(token->type == cmListFileLexer_Token_ParenRight) { |