Files
swift-mirror/test/Interop/C/swiftify-import/Inputs/module.modulemap
Henrik G. Olsson 526c68333c [Swiftify] Fix __sized_by and nullable return values (#81693)
Nullable return Spans did not include __swiftifyOverrideLifetime,
resulting in a lifetime error when returning the Span. Meanwhile return
values for __sized_by did not use the correct label for the call to the
RawSpan initializer, using `count` instead of `byteCount`.

rdar://151804085
rdar://151799287
2025-05-22 15:34:58 -07:00

29 lines
528 B
Plaintext

module CountedByClang {
header "counted-by.h"
export *
}
module CountedByNoEscapeClang {
header "counted-by-noescape.h"
export *
}
module SizedByClang {
header "sized-by.h"
export *
}
module SizedByNoEscapeClang {
header "sized-by-noescape.h"
export *
}
module SizedByLifetimeboundClang {
header "sized-by-lifetimebound.h"
export *
}
module CountedByLifetimeboundClang {
header "counted-by-lifetimebound.h"
export *
}
module CommentsClang {
header "comments.h"
export *
}