From 546d1b7580c729e8f87d8c1c2bd0e6ab5991948a Mon Sep 17 00:00:00 2001 From: truebrain Date: Mon, 12 Jan 2009 14:31:49 +0000 Subject: (svn r15006) -Codechange: throw a real instance of a class, instead of '0' (which can also be a throw from within a thread for what ever reason) --- src/thread.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/thread.h') diff --git a/src/thread.h b/src/thread.h index f6f29a711..8d0a8ee84 100644 --- a/src/thread.h +++ b/src/thread.h @@ -7,6 +7,8 @@ typedef void (*OTTDThreadFunc)(void *); +class OTTDThreadExitSignal { }; + /** * A Thread Object which works on all our supported OSes. */ -- cgit v1.2.3-54-g00ecf