================
@@ -28,7 +34,7 @@ cast_expression = unary_expression
 unary_expression = postfix_expression
                  | unary_operator cast_expression ;
 
-unary_operator = "*" | "&" | "+" | "-";
+unary_operator = "*" | "&" | "+" | "-" | "~";
----------------
kuilpd wrote:

We don't do any function name lookups at this point. If we start doing function 
calls, I don't think calling destructors is something that needs to be 
implemented, it seems very unlikely to be used for data inspection. But even if 
we end up doing it, we can think about how to handle this at that point.

https://github.com/llvm/llvm-project/pull/209768
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to