Skip to content

Commit 934fd9a

Browse files
committed
Fix(SlimSystem): use import instead of include
1 parent 105280c commit 934fd9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

threading/channels.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ when not defined(gcArc) and not defined(gcOrc) and not defined(nimdoc):
8383
{.error: "This channel implementation requires --gc:arc or --gc:orc".}
8484

8585
when defined(nimPreviewSlimSystem):
86-
include std/typedthreads
87-
include std/assertions
86+
import std/typedthreads
87+
import std/assertions
8888

8989
import std/[locks, atomics, isolation]
9090
import system/ansi_c

0 commit comments

Comments
 (0)