When I encounter CXCursor_UnaryExpr
, how can I extract info about it? For example, sizeof(int)
, or sizeof(1 + 2)
, how can I get the sizeof
part and the expression part 1 + 2
?
When I encounter CXCursor_UnaryExpr
, how can I extract info about it? For example, sizeof(int)
, or sizeof(1 + 2)
, how can I get the sizeof
part and the expression part 1 + 2
?