From 87d8bfeaa2e0e7e5ca9994a0ddd90c19447a013b Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Tue, 2 Feb 2016 14:12:00 +0100 Subject: [PATCH] Bluetooth: Add clarifying comment about usage of struct bt_uuid This type should only be used as a pointer. Change-Id: Icf656f310344cecbde527e809af6d00dcfc7ef82 Signed-off-by: Szymon Janc --- include/bluetooth/uuid.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/bluetooth/uuid.h b/include/bluetooth/uuid.h index 8aea075b68d..8c7d93711f5 100644 --- a/include/bluetooth/uuid.h +++ b/include/bluetooth/uuid.h @@ -32,6 +32,7 @@ enum { BT_UUID_TYPE_128, }; +/** @brief This is a 'tentative' type and should be used as a pointer only */ struct bt_uuid { uint8_t type; };