diff options
author | Karsten Heimrich <karsten.heimrich@theqtcompany.com> | 2016-02-15 12:32:49 +0100 |
---|---|---|
committer | Karsten Heimrich <karsten.heimrich@theqtcompany.com> | 2016-02-15 14:27:10 +0000 |
commit | 00676a162d97f5e0c955cef0212449943764961d (patch) | |
tree | 4fda8b1fef808eb5da01801e44f807fe4a4cbd17 /src/qdoc/cppcodeparser.cpp | |
parent | 23acb57b2999b206d9f259c332aecca1ede98219 (diff) | |
download | qttools-00676a162d97f5e0c955cef0212449943764961d.tar.gz |
qdoc: accepts C++11 variadic templates ellipsis operator
Change-Id: I8211aa66a3b8f95a0f75b7b15714efeef71e26ff
Task-number: QTBUG-47085
Reviewed-by: Martin Smith <martin.smith@theqtcompany.com>
Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'src/qdoc/cppcodeparser.cpp')
-rw-r--r-- | src/qdoc/cppcodeparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qdoc/cppcodeparser.cpp b/src/qdoc/cppcodeparser.cpp index 28eb08899..7a930e3ad 100644 --- a/src/qdoc/cppcodeparser.cpp +++ b/src/qdoc/cppcodeparser.cpp @@ -1255,7 +1255,7 @@ bool CppCodeParser::matchDataType(CodeChunk *dataType, QString *var) } while (match(Tok_Ampersand) || match(Tok_Aster) || match(Tok_const) || - match(Tok_Caret)) + match(Tok_Caret) || match(Tok_Ellipsis)) dataType->append(previousLexeme()); if (match(Tok_LeftParenAster)) { |