mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-30 20:15:35 +08:00
Workaround error C2797 when compiling with MSVC 2013 Update 3.
For more info see http://msdn.microsoft.com/en-us/library/dn793970.aspx
This commit is contained in:
@@ -121,7 +121,7 @@ namespace BlackSimPlugin
|
||||
qint32 lon_velocity = 0; //!< Longitude velocity
|
||||
qint32 alt_velocity = 0; //!< Altitude velocity
|
||||
quint32 ground_velocity = 0; //!< Ground velocity
|
||||
std::array<quint8, 4> reserved = {{0, 0, 0, 0}}; //!< Reserved
|
||||
std::array<quint8, 4> reserved = std::array<quint8, 4>{{0, 0, 0, 0}}; //!< Reserved
|
||||
qint32 pbh = 0; //!< Pitch/Bank/Heading
|
||||
qint32 lat_i = 0; //!< Latitude - integer
|
||||
qint32 lon_hi = 0; //!< Longitude - integer
|
||||
|
||||
Reference in New Issue
Block a user