Everywhere: Update to clang-format 20

This commit is contained in:
Alec Murphy 2025-04-19 07:31:54 -04:00
parent 402d802d2f
commit e7d8b456aa
9 changed files with 19 additions and 38 deletions

View file

@ -25,12 +25,9 @@ class TcpSocket {
U64 send_buffer_filled;
U64 send_buffer_kick; // We set this to 1 when we have data available to net,
// Net sets back to 0 when ready to receive
U0(*close)
();
U64(*receive)
(U64 buf, U64 length);
U0(*send)
(U64 buf, U64 length);
U0 (*close)();
U64 (*receive)(U64 buf, U64 length);
U0 (*send)(U64 buf, U64 length);
};
class TcpBind {