diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2024-01-31 00:03:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-30 17:03:02 +0100 |
commit | 98b083d750b1660c6ed1714485d4c8d5f8b29b34 (patch) | |
tree | abfc8eae79912cf917d9c629f7a6acde3c9e4a43 /compiler | |
parent | 857b35c602309e8eb41007bf7fafc5245fa20dfe (diff) | |
download | Nim-98b083d750b1660c6ed1714485d4c8d5f8b29b34.tar.gz |
minor fixes for std prefix in the compiler (#23269)
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/nimeval.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/nimeval.nim b/compiler/nimeval.nim index e98de7e62..a316d71f6 100644 --- a/compiler/nimeval.nim +++ b/compiler/nimeval.nim @@ -11,8 +11,8 @@ import ast, modules, condsyms, options, llstream, lineinfos, vm, - vmdef, modulegraphs, idents, os, pathutils, - scriptconfig, std/[compilesettings, tables] + vmdef, modulegraphs, idents, pathutils, + scriptconfig, std/[compilesettings, tables, os] import pipelines |