Skip to content

Commit

Permalink
AP_Mount: example fix travis warning
Browse files Browse the repository at this point in the history
missing function declaration
implicit cast
some style fix
  • Loading branch information
khancyr authored and OXINARF committed Apr 13, 2017
1 parent f2812c1 commit 0be0226
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libraries/AP_Module/examples/ModuleTest/ModuleTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
#include <AP_HAL/AP_HAL.h>
#include <AP_Module/AP_Module.h>

void setup();
void loop();

const AP_HAL::HAL& hal = AP_HAL::get_HAL();

// sensor declaration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@

#include <AP_Mount/AP_Mount.h>

void setup();
void loop();

const AP_HAL::HAL& hal = AP_HAL::get_HAL();

void setup () {
Expand Down

0 comments on commit 0be0226

Please sign in to comment.