mirror of https://github.com/ARMmbed/mbed-os.git
Add default initialisation of own_address_type_t
parent
25608eede1
commit
0b163ffbe1
|
@ -578,6 +578,12 @@ struct own_address_type_t : SafeEnum<own_address_type_t, uint8_t> {
|
|||
own_address_type_t(type value) : SafeEnum(value)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Default initialization of own_address_type_t.
|
||||
*/
|
||||
own_address_type_t() :
|
||||
SafeEnum<own_address_type_t, uint8_t>(PUBLIC) { }
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue