Add default initialisation of own_address_type_t

pull/12730/head
Lingkai Dong 2020-04-06 17:35:37 +01:00
parent 25608eede1
commit 0b163ffbe1
1 changed files with 6 additions and 0 deletions

View File

@ -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) { }
};
/**