From f8e714bd30809c7a1f606d64aa0ea1e41036f037 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 9 Aug 2014 18:10:45 +0100 Subject: Fixes async on Linux. --- lib/pure/asyncdispatch.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/pure/asyncdispatch.nim b/lib/pure/asyncdispatch.nim index 6339232f8..752c19534 100644 --- a/lib/pure/asyncdispatch.nim +++ b/lib/pure/asyncdispatch.nim @@ -639,7 +639,7 @@ else: readCBs: seq[TCallback] writeCBs: seq[TCallback] - PDispatcher* = ref object + PDispatcher* = ref object of PDispatcherBase selector: PSelector proc `==`*(x, y: TAsyncFD): bool {.borrow.} -- cgit 1.4.1-2-gfad0 nchange='this.form.submit();'> This repository contains the Nim compiler, Nim's stdlib, tools, and documentation. (mirror)ahoang <ahoang@tilde.institute>
summary refs log tree commit diff stats
path: root/examples/iupex1.nim
blob: bf7ed2f1c37cd9fe6df48b2626912664c99b4002 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37