diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-09-03 12:11:15 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-09-03 12:12:10 +0200 |
commit | c6bfe05083fde0d1c44ddd23963351b2a39d2592 (patch) | |
tree | 3e90bc36a25b7945799e6974f74af533ac47b8a1 /src/shared/cplusplus/Bind.cpp | |
parent | 8d55ce4c8235884cc3665c465dfaeb9cf3b20226 (diff) | |
download | qt-creator-c6bfe05083fde0d1c44ddd23963351b2a39d2592.tar.gz |
Fixed alignment issues with 64 bits ABIs.
Diffstat (limited to 'src/shared/cplusplus/Bind.cpp')
-rw-r--r-- | src/shared/cplusplus/Bind.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/cplusplus/Bind.cpp b/src/shared/cplusplus/Bind.cpp index d7ab4d3853..3517b51b9d 100644 --- a/src/shared/cplusplus/Bind.cpp +++ b/src/shared/cplusplus/Bind.cpp @@ -626,7 +626,7 @@ bool Bind::visit(OperatorAST *ast) return false; } -int Bind::cppOperator(OperatorAST *ast) +OperatorNameId::Kind Bind::cppOperator(OperatorAST *ast) { OperatorNameId::Kind kind = OperatorNameId::InvalidOp; @@ -2423,7 +2423,7 @@ bool Bind::visit(QualifiedNameAST *ast) bool Bind::visit(OperatorFunctionIdAST *ast) { - const int op = this->cppOperator(ast->op); + const OperatorNameId::Kind op = this->cppOperator(ast->op); ast->name = _name = control()->operatorNameId(op); return false; } |