From 58cc2c0d019f32b2cf400051c3d87f2eb76b1584 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Peter=20=C3=85strand?= Date: Wed, 10 Dec 2008 10:08:45 +0000 Subject: [PATCH] Avoid GCC warning: initializer lists ordered as declarations git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3349 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- win/rfb_win32/IntervalTimer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win/rfb_win32/IntervalTimer.h b/win/rfb_win32/IntervalTimer.h index ddfae493..deb2abc6 100644 --- a/win/rfb_win32/IntervalTimer.h +++ b/win/rfb_win32/IntervalTimer.h @@ -29,9 +29,9 @@ namespace rfb { struct IntervalTimer { IntervalTimer(HWND hwnd_, int id_) - : active(false), hwnd(hwnd_), id(id_) { + : hwnd(hwnd_), id(id_), active(false) { } - IntervalTimer() : active(false), hwnd(0), id(0) { + IntervalTimer() : hwnd(0), id(0), active(false) { } ~IntervalTimer() { stop(); -- 2.39.5