8000 Change return type of bitSize() to uint8_t · perody/esp32-snippets@4cfef4d · GitHub
[go: up one dir, main page]

Skip to content

Commit 4cfef4d

Browse files
committed
Change return type of bitSize() to uint8_t
1 parent 2dcd6aa commit 4cfef4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp_utils/BLEUUID.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class BLEUUID {
2424
BLEUUID(uint8_t* pData, size_t size, bool msbFirst);
2525
BLEUUID(esp_gatt_id_t gattId);
2626
BLEUUID();
27-
int bitSize(); // Get the number of bits in this uuid.
27+
uint8_t bitSize(); // Get the number of bits in this uuid.
2828
bool equals(BLEUUID uuid);
2929
esp_bt_uuid_t* getNative();
3030
BLEUUID to128();

0 commit comments

Comments
 (0)
0