diff options
author | Andreas Rumpf <andreasrumpf@noname> | 2009-09-15 23:22:22 +0200 |
---|---|---|
committer | Andreas Rumpf <andreasrumpf@noname> | 2009-09-15 23:22:22 +0200 |
commit | 66a7e3d37c0303997a6b1a3b7ec263dfb8c07748 (patch) | |
tree | 40ae1ab8aeb9086b7310ea73ab8a2ed6b597f88b /lib/pure/times.nim | |
parent | 300430fbba28b408f7ac86ca46b03d9d50839399 (diff) | |
download | Nim-66a7e3d37c0303997a6b1a3b7ec263dfb8c07748.tar.gz |
added tools and web dirs
Diffstat (limited to 'lib/pure/times.nim')
-rwxr-xr-x[-rw-r--r--] | lib/pure/times.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/times.nim b/lib/pure/times.nim index 793b55ead..8c21b6027 100644..100755 --- a/lib/pure/times.nim +++ b/lib/pure/times.nim @@ -25,13 +25,13 @@ type when defined(posix): type - TTime* = abstract int ## abstract type that represents a time + TTime* = distinct int ## distinct type that represents a time elif defined(windows): when defined(vcc): # newest version of Visual C++ defines time_t to be of 64 bits - type TTime* = abstract int64 + type TTime* = distinct int64 else: - type TTime* = abstract int32 + type TTime* = distinct int32 elif defined(ECMAScript): type TTime* {.final.} = object |