diff --git a/libraries/AP_RangeFinder/AP_RangeFinder_PulsedLightLRF.cpp b/libraries/AP_RangeFinder/AP_RangeFinder_PulsedLightLRF.cpp
index 3b9599bd5a..4b7b7fbb68 100644
--- a/libraries/AP_RangeFinder/AP_RangeFinder_PulsedLightLRF.cpp
+++ b/libraries/AP_RangeFinder/AP_RangeFinder_PulsedLightLRF.cpp
@@ -13,11 +13,12 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see .
*/
-
#include "AP_RangeFinder_PulsedLightLRF.h"
-#include
+
#include
+#include
+
extern const AP_HAL::HAL& hal;
/*
@@ -26,9 +27,9 @@ extern const AP_HAL::HAL& hal;
already know that we should setup the rangefinder
*/
AP_RangeFinder_PulsedLightLRF::AP_RangeFinder_PulsedLightLRF(RangeFinder &_ranger, uint8_t instance,
- RangeFinder::RangeFinder_State &_state) :
- AP_RangeFinder_Backend(_ranger, instance, _state),
- _dev(hal.i2c_mgr->get_device(0, AP_RANGEFINDER_PULSEDLIGHTLRF_ADDR))
+ RangeFinder::RangeFinder_State &_state)
+ : AP_RangeFinder_Backend(_ranger, instance, _state)
+ , _dev(hal.i2c_mgr->get_device(0, AP_RANGEFINDER_PULSEDLIGHTLRF_ADDR))
{
}