Hello everyone,
I am quite desperate right now finding a bug in my application. I am using
clang API to travel through its AST a do some static analysis - just
Visitor, no changes. I am getting this:
/usr/lib/llvm-3.8/include/llvm/Support/Casting.h:237: typename
llvm::cast_retty::ret_type llvm::
Hi Daniel:
This is because Expr derives from Stmt, not the other way around, so
casting a Stmt to an Expr might fail.
Try using dyn_cast<> instead and test for null.
hth...
don
On Sun, Jul 31, 2016 at 3:45 AM, Daniel Kraut via cfe-users <
cfe-users@lists.llvm.org> wrote:
> Hello everyone,
>
>