summaryrefslogtreecommitdiff
path: root/src/test/DemoMainLoop.h
diff options
context:
space:
mode:
authorPatrick Sattler <sattler@itestra.de>2014-02-18 14:51:07 +0100
committerStefan Laner <laner@itestra.de>2014-02-26 15:05:11 +0100
commit25cacee1cb53b36a930ed2934fe7c4b2a406ca8a (patch)
tree3e0b8789e96e34bfde326c3444aac04f6eb7b312 /src/test/DemoMainLoop.h
parent356ad3559a386865673aed7738c877206a73e390 (diff)
downloadgenivi-common-api-dbus-runtime-25cacee1cb53b36a930ed2934fe7c4b2a406ca8a.tar.gz
Fixed some compile warnings
Change-Id: I2a35fc2adc0c3e2484a1be260da20d0a4ab92ed6
Diffstat (limited to 'src/test/DemoMainLoop.h')
-rw-r--r--src/test/DemoMainLoop.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/test/DemoMainLoop.h b/src/test/DemoMainLoop.h
index 41b51eb..0de634f 100644
--- a/src/test/DemoMainLoop.h
+++ b/src/test/DemoMainLoop.h
@@ -48,7 +48,10 @@ class MainLoop {
MainLoop& operator=(MainLoop&&) = delete;
explicit MainLoop(std::shared_ptr<MainLoopContext> context) :
- context_(context), currentMinimalTimeoutInterval_(TIMEOUT_INFINITE), running_(false), breakLoop_(false) {
+ context_(context),
+ currentMinimalTimeoutInterval_(TIMEOUT_INFINITE),
+ breakLoop_(false),
+ running_(false) {
#ifdef WIN32
WSAEVENT wsaEvent = WSACreateEvent();