diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-03-23 12:11:33 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-03-23 12:12:07 +0100 |
commit | 4b8d59719624271c1e70ba93294016fb593601f5 (patch) | |
tree | 6f8cf60ee992f620bffe561138a5f61e9f37fefd /src/shared/cplusplus/ASTMatcher.cpp | |
parent | 21c13328d3c5cf902734045394aa0a976aaf8db2 (diff) | |
download | qt-creator-4b8d59719624271c1e70ba93294016fb593601f5.tar.gz |
Recognize C++0x rvalue references.
Diffstat (limited to 'src/shared/cplusplus/ASTMatcher.cpp')
-rw-r--r-- | src/shared/cplusplus/ASTMatcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/cplusplus/ASTMatcher.cpp b/src/shared/cplusplus/ASTMatcher.cpp index 612433d8dd..31024bd05f 100644 --- a/src/shared/cplusplus/ASTMatcher.cpp +++ b/src/shared/cplusplus/ASTMatcher.cpp @@ -1725,7 +1725,7 @@ bool ASTMatcher::match(ReferenceAST *node, ReferenceAST *pattern) (void) node; (void) pattern; - pattern->amp_token = node->amp_token; + pattern->reference_token = node->reference_token; return true; } |