diff --git a/shared/cplusplus/AST.cpp b/shared/cplusplus/AST.cpp
index 7818d29f5c573ff7b654815844804237db632869..e0f1582db6ddd59026dc79d59d859be9535a039b 100644
--- a/shared/cplusplus/AST.cpp
+++ b/shared/cplusplus/AST.cpp
@@ -2730,7 +2730,6 @@ unsigned UnaryExpressionAST::firstToken() const
 
 unsigned UnaryExpressionAST::lastToken() const
 {
-    assert(0 && "review me");
     if (expression)
         return expression->lastToken();
     return unary_op_token + 1;
@@ -2750,8 +2749,13 @@ unsigned UsingAST::firstToken() const
 
 unsigned UsingAST::lastToken() const
 {
-    assert(0 && "review me");
-    return semicolon_token + 1;
+    if (semicolon_token)
+        return semicolon_token + 1;
+    else if (name)
+        return name->lastToken();
+    else if (typename_token)
+        return typename_token + 1;
+    return using_token + 1;
 }
 
 void UsingDirectiveAST::accept0(ASTVisitor *visitor)