Skip to content

Commit 2dce1f5

Browse files
committed
DO NOT MERGE: add missing types
1 parent e1b3403 commit 2dce1f5

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

lib/ClangImporter/ImportType.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,16 @@ namespace {
418418
isSafePointer = true;
419419
return Visit(type->desugar());
420420
}
421+
ImportResult
422+
VisitBoundsAttributedType(const clang::BoundsAttributedType *type) {
423+
isSafePointer = true;
424+
return Visit(type->desugar());
425+
}
426+
ImportResult
427+
VisitValueTerminatedType(const clang::ValueTerminatedType *type) {
428+
isSafePointer = true;
429+
return Visit(type->desugar());
430+
}
421431

422432
ImportResult VisitMemberPointerType(const clang::MemberPointerType *type) {
423433
return Type();

0 commit comments

Comments
 (0)