Files
swift-mirror/test/Interop/C/swiftify-import/Inputs/module.modulemap
Henrik G. Olsson fdea6ba8d0 [Swiftify][ClangImporter] Import noescape attribute for parameters (#78713)
This passes along the noescape attribute to @_SwiftifyImport as
.noescape(pointer: .param(X)). This allows importing parameters as Span,
MutableSpan and RawSpan.
2025-01-27 10:01:06 -08:00

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 *
}