Skip to content

Commit 760374f

Browse files
committed
WIP
1 parent 9addc71 commit 760374f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/JExtractSwiftTests/FunctionLoweringTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ final class FunctionLoweringTests {
2626
expectedCDecl: """
2727
@_cdecl("c_f")
2828
public func c_f(_ x: Int, _ y: Float, _ z_pointer: UnsafeRawPointer, _ z_count: Int) {
29-
f(x: x, y: y, z: UnsafeBufferPointer<Bool>(start: z_pointer.assumingMemoryBound(to: Bool.self),count: z_count))
29+
f(x: x, y: y, z: UnsafeBufferPointer<Bool>(start: z_pointer.assumingMemoryBound(to: Bool.self), count: z_count))
3030
}
3131
""",
3232
expectedCFunction: "void c_f(ptrdiff_t x, float y, const void *z_pointer, ptrdiff_t z_count)"

0 commit comments

Comments
 (0)