Skip to content

Commit 30e09a7

Browse files
committed
Fix native compilation
1 parent cdcb952 commit 30e09a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

io/native/src/main/scala/fs2/io/file/AsyncFilesPlatform.scala

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ package io
2424
package file
2525

2626
private[file] trait AsyncFilesPlatform[F[_]] { self: Files.UnsealedFiles[F] =>
27-
override def walk(
27+
override def walkWithAttributes(
2828
start: Path,
2929
options: WalkOptions
30-
): Stream[F, Path] =
30+
): Stream[F, PathInfo] =
3131
// Disable eager walks until https://github.com/scala-native/scala-native/issues/3744
3232
walkJustInTime(start, options)
3333

3434
protected def walkJustInTime(
3535
start: Path,
3636
options: WalkOptions
37-
): Stream[F, Path]
37+
): Stream[F, PathInfo]
3838
}

0 commit comments

Comments
 (0)