summaryrefslogtreecommitdiff
path: root/shared/cplusplus/AST.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'shared/cplusplus/AST.cpp')
-rw-r--r--shared/cplusplus/AST.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/shared/cplusplus/AST.cpp b/shared/cplusplus/AST.cpp
index 33de30e968..f75fcf12a4 100644
--- a/shared/cplusplus/AST.cpp
+++ b/shared/cplusplus/AST.cpp
@@ -1583,10 +1583,11 @@ unsigned LabeledStatementAST::firstToken() const
unsigned LabeledStatementAST::lastToken() const
{
- assert(0 && "review me");
if (statement)
return statement->lastToken();
- return colon_token + 1;
+ else if (colon_token)
+ return colon_token + 1;
+ return label_token + 1;
}
void LinkageBodyAST::accept0(ASTVisitor *visitor)