mirror of
https://github.com/espressif/openthread.git
synced 2026-08-01 16:47:47 +00:00
[clang-format] use AllowShortFunctionsOnASingleLine: All (#8502)
This commit updates `AllowShortFunctionsOnASingleLine` to `All` from `InlineOnly`.
This commit is contained in:
@@ -368,15 +368,9 @@ exit:
|
||||
return rval;
|
||||
}
|
||||
|
||||
void otPlatUartReceived(const uint8_t *aBuf, uint16_t aBufLength)
|
||||
{
|
||||
ReceiveTask(aBuf, aBufLength);
|
||||
}
|
||||
void otPlatUartReceived(const uint8_t *aBuf, uint16_t aBufLength) { ReceiveTask(aBuf, aBufLength); }
|
||||
|
||||
void otPlatUartSendDone(void)
|
||||
{
|
||||
SendDoneTask();
|
||||
}
|
||||
void otPlatUartSendDone(void) { SendDoneTask(); }
|
||||
|
||||
extern "C" void otAppCliInit(otInstance *aInstance)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user