reorder enum to add new values at the end

pull/6932/head
paul-szczepanek-arm 2018-04-17 16:25:35 +01:00
parent 9a9167602d
commit f56f57bf15
1 changed files with 19 additions and 19 deletions

View File

@ -59,24 +59,6 @@ namespace BLEProtocol {
*/
PUBLIC = 0,
/**
* Random address.
*
* Use Gap::getRandomAddressType to retrieve the type of the random
* address.
*/
RANDOM,
/**
* A Public address used as a device identity address.
*/
PUBLIC_IDENTITY,
/**
* A Random static address used as a device identity address.
*/
RANDOM_STATIC_IDENTITY,
/**
* Random static device address.
*
@ -105,7 +87,25 @@ namespace BLEProtocol {
* on RANDOM instead. Use Gap::getRandomAddressType to retrieve the
* type of the random address.
*/
RANDOM_PRIVATE_NON_RESOLVABLE
RANDOM_PRIVATE_NON_RESOLVABLE,
/**
* Random address.
*
* Use Gap::getRandomAddressType to retrieve the type of the random
* address.
*/
RANDOM,
/**
* A Public address used as a device identity address.
*/
PUBLIC_IDENTITY,
/**
* A Random static address used as a device identity address.
*/
RANDOM_STATIC_IDENTITY
};
};