modules remove extra semicolons

This commit is contained in:
Daniel Agar
2017-06-04 12:48:50 -04:00
committed by Nuno Marques
parent 08fbd022af
commit 545ce9ae24
18 changed files with 48 additions and 46 deletions
+1 -1
View File
@@ -142,7 +142,7 @@ public:
px4_sem_init(&_lock, 0, _max_readers);
}
~Report() {};
~Report() {}
bool copyData(void *outbuf, int len)
{
+2 -2
View File
@@ -254,7 +254,7 @@ void Simulator::update_sensors(mavlink_hil_sensor_t *imu)
RawAirspeedData airspeed = {};
airspeed.temperature = imu->temperature;
airspeed.diff_pressure = imu->diff_pressure + 0.001f * (hrt_absolute_time() & 0x01);;
airspeed.diff_pressure = imu->diff_pressure + 0.001f * (hrt_absolute_time() & 0x01);
write_airspeed_data(&airspeed);
}
@@ -491,7 +491,7 @@ void Simulator::handle_message(mavlink_message_t *msg, bool publish)
_hil_ref_timestamp = timestamp;
_hil_ref_lat = lat;
_hil_ref_lon = lon;
_hil_ref_alt = hil_state.alt / 1000.0f;;
_hil_ref_alt = hil_state.alt / 1000.0f;
}
float x;