From c1a0ebb725d6ac05e94cc6ad8507106636b63326 Mon Sep 17 00:00:00 2001 From: Craig Robbins Date: Sun, 1 May 2016 16:47:08 +1000 Subject: Fix use of uninitialised variable in class Event --- src/threading/event.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/threading/event.h') diff --git a/src/threading/event.h b/src/threading/event.h index 43f2b04be..dd5164576 100644 --- a/src/threading/event.h +++ b/src/threading/event.h @@ -48,8 +48,8 @@ DEALINGS IN THE SOFTWARE. */ class Event { public: -#if __cplusplus < 201103L Event(); +#if __cplusplus < 201103L ~Event(); #endif void wait(); -- cgit v1.2.3