summary refs log tree commit diff stats
path: root/tests/cpp
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-02-06 15:29:25 +0100
committerAndreas Rumpf <rumpf_a@web.de>2016-02-06 15:29:25 +0100
commit58f6bfb1dc44fc0cf406df6ddb3aae0c3974ed03 (patch)
treee124cba307a57a4de72754654791d00eb48b2770 /tests/cpp
parent19677a11b0680f5e76300608bc6dd61fd90229e8 (diff)
parent3941b8968cd44e4c629e29493fc4c8ffda5005f8 (diff)
downloadNim-58f6bfb1dc44fc0cf406df6ddb3aae0c3974ed03.tar.gz
Merge branch 'devel' of github.com:nim-lang/Nim into devel
Diffstat (limited to 'tests/cpp')
-rw-r--r--tests/cpp/tthread_createthread.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cpp/tthread_createthread.nim b/tests/cpp/tthread_createthread.nim
index 2c239005f..363136e9d 100644
--- a/tests/cpp/tthread_createthread.nim
+++ b/tests/cpp/tthread_createthread.nim
@@ -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()