Skip to content

Commit 21064d1

Browse files
committedMay 29, 2024
refactor
1 parent 2331332 commit 21064d1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎src/ble/BleUUID.h

-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ struct ChipBleUUID
3838
uint8_t bytes[16];
3939
};
4040

41-
namespace {
4241
constexpr bool isValidHexChar(char c)
4342
{
4443
return (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');
@@ -51,7 +50,6 @@ constexpr uint8_t HexDigitToInt(const char c)
5150
else
5251
return static_cast<uint8_t>((c >= 'a' ? c - 'a' : c - 'A') + 10);
5352
}
54-
} // namespace
5553

5654
bool UUIDsMatch(const ChipBleUUID * idOne, const ChipBleUUID * idTwo);
5755

0 commit comments

Comments
 (0)