[format] standardize clang-format to 19.1.7 (#11797)

Since llvm-19, if we use package manager to install it, the minor
versions could be different. This commit standardizes the version on
linux to 19.1.7. This version is the same as the one installed by
homebrew.
This commit is contained in:
Li Cao
2025-08-12 11:20:30 -07:00
committed by GitHub
parent 09214764ec
commit 318006e4da
10 changed files with 105 additions and 28 deletions
+3 -5
View File
@@ -1019,11 +1019,9 @@ void TestNetworkDataDsnSrpAnycastSeqNumSelection(void)
const uint8_t kPreferredSeqNum15 = 3;
const uint8_t kPreferredVer15 = 0;
#define TEST_CASE(Num) \
{ \
kNetworkData##Num, sizeof(kNetworkData##Num), kSeqNumbers##Num, sizeof(kSeqNumbers##Num), \
kPreferredSeqNum##Num, kPreferredVer##Num \
}
#define TEST_CASE(Num) \
{kNetworkData##Num, sizeof(kNetworkData##Num), kSeqNumbers##Num, \
sizeof(kSeqNumbers##Num), kPreferredSeqNum##Num, kPreferredVer##Num}
const TestInfo kTests[] = {
TEST_CASE(1), TEST_CASE(2), TEST_CASE(3), TEST_CASE(4), TEST_CASE(5),