summary refs log tree commit diff stats
path: root/tests/cpp
diff options
context:
space:
mode:
authordef <dennis@felsin9.de>2015-07-11 14:39:19 +0200
committerdef <dennis@felsin9.de>2016-01-25 19:10:37 +0100
commitc50b5b62ef5ae51467754f7c1db49c4cbeaee5f8 (patch)
tree3c40a179da95227dd7308d57965809f7e2dacb44 /tests/cpp
parent4246f660ea4ba7bab05811662eb53a87cc0cc049 (diff)
downloadNim-c50b5b62ef5ae51467754f7c1db49c4cbeaee5f8.tar.gz
Fix a few deprecation warnings
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()