mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This passes along the noescape attribute to @_SwiftifyImport as .noescape(pointer: .param(X)). This allows importing parameters as Span, MutableSpan and RawSpan.
18 lines
287 B
Plaintext
18 lines
287 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 *
|
|
}
|
|
|