diff options
author | metagn <metagngn@gmail.com> | 2022-10-01 23:35:09 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-01 22:35:09 +0200 |
commit | 0b1650576c6102ce85b4b2c0788b3a5b77154e43 (patch) | |
tree | ef5e7e6d804665be33b92c507a0d07e082634463 /lib/wrappers | |
parent | cbd9fee22ac7063c66cc9aa38f20e78df082e387 (diff) | |
download | Nim-0b1650576c6102ce85b4b2c0788b3a5b77154e43.tar.gz |
move widestrs out of system (#20462)
* move widestrs out of system * fix osproc
Diffstat (limited to 'lib/wrappers')
-rw-r--r-- | lib/wrappers/odbcsql.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/wrappers/odbcsql.nim b/lib/wrappers/odbcsql.nim index 4e37e1a17..6b300c5ff 100644 --- a/lib/wrappers/odbcsql.nim +++ b/lib/wrappers/odbcsql.nim @@ -7,6 +7,9 @@ # distribution, for details about the copyright. # +when defined(nimPreviewSlimSystem): + import std/widestrs + when not defined(ODBCVER): const ODBCVER = 0x0351 ## define ODBC version 3.51 by default |