fix minor compiler warning due to a shadowed member variable.

master
Rohit Grover 2015-10-23 10:32:31 +01:00
parent 84f434a994
commit 17f2e99d2b
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ public:
*
* @note we don't yet support 32-bit shortened UUIDs.
*/
UUID(ShortUUIDBytes_t shortUUID) : type(UUID_TYPE_SHORT), baseUUID(), shortUUID(shortUUID) {
UUID(ShortUUIDBytes_t _shortUUID) : type(UUID_TYPE_SHORT), baseUUID(), shortUUID(_shortUUID) {
/* empty */
}