diff options
author | Araq <rumpf_a@web.de> | 2020-01-05 09:42:24 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2020-01-05 09:42:44 +0100 |
commit | ae68ff959bcd358f298e5a225307c8bbce4a1e52 (patch) | |
tree | c6d8d37b2f46ac3cce601aed654511062c681bf3 | |
parent | fdcea66fd9cc3a82cc2ba98476fd96ae0b703b9e (diff) | |
download | Nim-ae68ff959bcd358f298e5a225307c8bbce4a1e52.tar.gz |
fixes #12996
-rw-r--r-- | lib/pure/strtabs.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pure/strtabs.nim b/lib/pure/strtabs.nim index 3af21431e..c6b44a3ca 100644 --- a/lib/pure/strtabs.nim +++ b/lib/pure/strtabs.nim @@ -57,7 +57,8 @@ when defined(js): else: {.pragma: rtlFunc, rtl.} import os - include "system/inclrtl" + +include "system/inclrtl" type StringTableMode* = enum ## Describes the tables operation mode. |