We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18d0c7c commit fe34cc5Copy full SHA for fe34cc5
src/ir/ty.rs
@@ -1036,6 +1036,15 @@ impl Type {
1036
Item::from_ty_or_ref(pointee, location, None, ctx);
1037
TypeKind::Pointer(inner)
1038
}
1039
+ CXType_Attributed => {
1040
+ return Self::from_clang_ty(
1041
+ potential_id,
1042
+ &canonical_ty,
1043
+ location,
1044
+ parent_id,
1045
+ ctx,
1046
+ );
1047
+ }
1048
CXType_BlockPointer => {
1049
let pointee = ty.pointee_type().expect("Not valid Type?");
1050
let inner =
0 commit comments