From ec37b59a6552ed4a989e4c3cb1970fb970152e04 Mon Sep 17 00:00:00 2001 From: Solitude Date: Sat, 4 Nov 2023 11:46:59 +0200 Subject: [PATCH] Add missing std prefix (#22910) without it, devels fails to build with `-d:useLinenoise` --- compiler/llstream.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/llstream.nim b/compiler/llstream.nim index 84fe7dcdb9..fa223b3739 100644 --- a/compiler/llstream.nim +++ b/compiler/llstream.nim @@ -19,7 +19,7 @@ when defined(nimPreviewSlimSystem): const hasRstdin = (defined(nimUseLinenoise) or defined(useLinenoise) or defined(useGnuReadline)) and not defined(windows) -when hasRstdin: import rdstdin +when hasRstdin: import std/rdstdin type TLLRepl* = proc (s: PLLStream, buf: pointer, bufLen: int): int