Fix a few deprecation warnings

This commit is contained in:
def
2015-07-11 14:39:19 +02:00
parent 4246f660ea
commit c50b5b62ef
32 changed files with 53 additions and 65 deletions

View File

@@ -6,7 +6,7 @@ proc threadMain(a: int) {.thread.} =
discard
proc main() =
var thread: TThread[int]
var thread: Thread[int]
thread.createThread(threadMain, 0)
thread.joinThreads()