brintos

brintos / llvm-project-archived public Read only

0
0
Text · 175 B · 8121095 Raw
10 lines · python
1import lldb2 3 4def f(value, d):5    return (6        "pointer type"7        if value.GetType().GetTemplateArgumentType(0).IsPointerType()8        else "non-pointer type"9    )10