diff options
author | Araq <rumpf_a@web.de> | 2012-12-05 22:58:52 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-12-05 22:58:52 +0100 |
commit | c5826ec1fb747207573b1289b340d6243012f67f (patch) | |
tree | adee05abb345d1fe4573bdac0a78160dc960c672 /lib | |
parent | 38ab30d153f7ae3b1b2b74329092ffb7ca781ead (diff) | |
download | Nim-c5826ec1fb747207573b1289b340d6243012f67f.tar.gz |
fixes #266
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/fsmonitor.nim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/pure/fsmonitor.nim b/lib/pure/fsmonitor.nim index 92a80425a..a554cf963 100644 --- a/lib/pure/fsmonitor.nim +++ b/lib/pure/fsmonitor.nim @@ -17,9 +17,7 @@ ## module will therefore not work with any Linux kernel prior to that, unless ## it has been patched to support inotify. -when defined(windows): - {.error: "Windows is not yet supported by this module.".} -elif defined(linux): +when defined(linux) or defined(nimdoc): from posix import read else: {.error: "Your platform is not supported.".} |