Skip to content

Commit adb9e36

Browse files
committed
ktlintFormat
1 parent ff3a81d commit adb9e36

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

aws-crt-kotlin/native/src/aws/sdk/kotlin/crt/io/MutableBufferNative.kt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ import libcrt.*
1818
@OptIn(ExperimentalForeignApi::class)
1919
public actual class MutableBuffer private constructor(
2020
private val buffer: InnerBuffer,
21-
) : WithCrt(), Closeable {
21+
) : WithCrt(),
22+
Closeable {
2223
internal constructor(borrowed: CPointer<aws_byte_buf>) : this(InnerBuffer.Borrowed(borrowed))
2324

2425
/**
@@ -75,7 +76,8 @@ private sealed interface InnerBuffer {
7576
*/
7677
data class KBuffer(
7778
private val dest: ByteArray,
78-
) : WithCrt(), InnerBuffer {
79+
) : WithCrt(),
80+
InnerBuffer {
7981
private val pinned = dest.pin()
8082

8183
override val pointer: CPointer<aws_byte_buf> =

0 commit comments

Comments
 (0)