mirror of https://github.com/ArduPilot/ardupilot
HAL_VRBrain: fix compile warning re member init order
This commit is contained in:
parent
a340d13d01
commit
ee1a415baa
|
@ -26,9 +26,9 @@ VRBRAINUARTDriver::VRBRAINUARTDriver(const char *devpath, const char *perf_name)
|
|||
_devpath(devpath),
|
||||
_fd(-1),
|
||||
_baudrate(57600),
|
||||
_perf_uart(perf_alloc(PC_ELAPSED, perf_name)),
|
||||
_initialised(false),
|
||||
_in_timer(false),
|
||||
_perf_uart(perf_alloc(PC_ELAPSED, perf_name)),
|
||||
_flow_control(FLOW_CONTROL_DISABLE)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue