We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2331332 commit 21064d1Copy full SHA for 21064d1
src/ble/BleUUID.h
@@ -38,7 +38,6 @@ struct ChipBleUUID
38
uint8_t bytes[16];
39
};
40
41
-namespace {
42
constexpr bool isValidHexChar(char c)
43
{
44
return (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');
@@ -51,7 +50,6 @@ constexpr uint8_t HexDigitToInt(const char c)
51
50
else
52
return static_cast<uint8_t>((c >= 'a' ? c - 'a' : c - 'A') + 10);
53
}
54
-} // namespace
55
56
bool UUIDsMatch(const ChipBleUUID * idOne, const ChipBleUUID * idTwo);
57
0 commit comments