We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1b3403 commit 2dce1f5Copy full SHA for 2dce1f5
lib/ClangImporter/ImportType.cpp
@@ -418,6 +418,16 @@ namespace {
418
isSafePointer = true;
419
return Visit(type->desugar());
420
}
421
+ ImportResult
422
+ VisitBoundsAttributedType(const clang::BoundsAttributedType *type) {
423
+ isSafePointer = true;
424
+ return Visit(type->desugar());
425
+ }
426
427
+ VisitValueTerminatedType(const clang::ValueTerminatedType *type) {
428
429
430
431
432
ImportResult VisitMemberPointerType(const clang::MemberPointerType *type) {
433
return Type();
0 commit comments