AP_Param: make data pointer const

This commit is contained in:
Andrew Tridgell 2015-05-13 20:04:19 +10:00
parent 84726e4a3a
commit fb97c16a84

View File

@ -89,7 +89,7 @@ public:
uint8_t type; // AP_PARAM_*
const char name[AP_MAX_NAME_SIZE+1];
uint8_t key; // k_param_*
void *ptr; // pointer to the variable in memory
const void *ptr; // pointer to the variable in memory
union {
const struct GroupInfo *group_info;
const float def_value;