From 14d43f486c1be521c6e734696f1c3a665daa5fc1 Mon Sep 17 00:00:00 2001 From: Jonathan Wendt <wendt@vr.rwth-aachen.de> Date: Thu, 11 Jan 2018 15:34:17 +0100 Subject: [PATCH] Update VistaDeviceSensor.h so the initializer order is correct and gcc does not complain --- VistaCoreLibs/VistaDeviceDriversBase/VistaDeviceSensor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VistaCoreLibs/VistaDeviceDriversBase/VistaDeviceSensor.h b/VistaCoreLibs/VistaDeviceDriversBase/VistaDeviceSensor.h index d323ab3a9..7573c2a56 100644 --- a/VistaCoreLibs/VistaDeviceDriversBase/VistaDeviceSensor.h +++ b/VistaCoreLibs/VistaDeviceDriversBase/VistaDeviceSensor.h @@ -95,8 +95,8 @@ public: , m_nDeliverTs(0) , m_nAverageDeliverTime(0) , m_nEndianess(VistaSerializingToolset::GetPlatformEndianess()) - , m_vecMeasures(nSize) , m_nBusWidth( sizeof(void*) * 8 ) + , m_vecMeasures(nSize) {} /** -- GitLab