refactor: Fix clang-format expansion of table
By removing the trailing comma from the array initialization we hint clang-format to maintain the compact layout.
This commit is contained in:
@@ -1784,7 +1784,7 @@ _bytes_from_hex(const char* hex, size_t hex_size,
|
||||
const unsigned char ht[] = {
|
||||
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, // 01234567
|
||||
0x08, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // 89:;<=>?
|
||||
0x00, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00, // @ABCDEFG
|
||||
0x00, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00 // @ABCDEFG
|
||||
};
|
||||
const size_t ht_size = sizeof(ht);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user