[clang-format] use AllowShortFunctionsOnASingleLine: All (#8502)

This commit updates `AllowShortFunctionsOnASingleLine` to `All`
from `InlineOnly`.
This commit is contained in:
Abtin Keshavarzian
2022-12-08 09:34:05 -08:00
committed by GitHub
parent 48c0582e4e
commit 99a615bec2
229 changed files with 1285 additions and 4964 deletions
+2 -8
View File
@@ -82,10 +82,7 @@ void VerifyRawRssValue(int8_t aAverage, uint16_t aRawValue)
}
// This function prints the values in the passed in link info instance. It is invoked as the final step in test-case.
void PrintOutcome(LinkQualityInfo &aLinkInfo)
{
printf("%s -> PASS \n", aLinkInfo.ToInfoString().AsCString());
}
void PrintOutcome(LinkQualityInfo &aLinkInfo) { printf("%s -> PASS \n", aLinkInfo.ToInfoString().AsCString()); }
void TestLinkQualityData(RssTestData aRssData)
{
@@ -138,10 +135,7 @@ void VerifyRawRssValue(RssAverager &aRssAverager)
}
// This function prints the values in the passed link info instance. It is invoked as the final step in test-case.
void PrintOutcome(RssAverager &aRssAverager)
{
printf("%s -> PASS\n", aRssAverager.ToString().AsCString());
}
void PrintOutcome(RssAverager &aRssAverager) { printf("%s -> PASS\n", aRssAverager.ToString().AsCString()); }
int8_t GetRandomRss(void)
{