AP_Compass - fixed small compiler warning to do with order of parameters in constructor

This commit is contained in:
rmackay9 2012-02-29 22:45:49 +09:00
parent 5026b5c192
commit c819a0f68a

View File

@ -16,10 +16,10 @@ const AP_Param::GroupInfo Compass::var_info[] PROGMEM = {
//
Compass::Compass(void) :
_declination (0.0),
_null_init_done(false),
_null_enable(false),
_learn(1),
_use_for_yaw(1),
_null_enable(false),
_null_init_done(false),
product_id(AP_COMPASS_TYPE_UNKNOWN)
{
// Default the orientation matrix to none - will be overridden at group load time