diff options
author | flywind <43030857+xflywind@users.noreply.github.com> | 2021-02-15 12:39:03 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-15 19:39:03 +0100 |
commit | a03ec067dad3bafcd5af000487a183cfe9eb8496 (patch) | |
tree | 6972acd8e9c8e864ee488533429b56d9fa5b0cd9 /lib/system | |
parent | 70b9e9962f4576cc38fc3a32c6202ac8166ced5f (diff) | |
download | Nim-a03ec067dad3bafcd5af000487a183cfe9eb8496.tar.gz |
better getTempDir (#16914)
* better getTempDir * fix comments * better * address comments * use uint32
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/widestrs.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system/widestrs.nim b/lib/system/widestrs.nim index 0e314e79d..2cc3b74a9 100644 --- a/lib/system/widestrs.nim +++ b/lib/system/widestrs.nim @@ -75,8 +75,8 @@ const UNI_REPLACEMENT_CHAR = Utf16Char(0xFFFD'i16) UNI_MAX_BMP = 0x0000FFFF UNI_MAX_UTF16 = 0x0010FFFF - UNI_MAX_UTF32 = 0x7FFFFFFF - UNI_MAX_LEGAL_UTF32 = 0x0010FFFF + # UNI_MAX_UTF32 = 0x7FFFFFFF + # UNI_MAX_LEGAL_UTF32 = 0x0010FFFF halfShift = 10 halfBase = 0x0010000 |