From ac7f1eb073291de1df56a2402863b7c5c95b8c4d Mon Sep 17 00:00:00 2001 From: Dr-Carlos Date: Sun, 27 Aug 2023 20:08:15 +0930 Subject: [PATCH] _if: clang-format --- shell/i.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell/i.cpp b/shell/i.cpp index 1cb80b1..6b7ca93 100644 --- a/shell/i.cpp +++ b/shell/i.cpp @@ -443,7 +443,8 @@ marked as part of functions, data, interrupt handlers, etc. )"); static ShellCommand _if_cmd( - "if", [](Session &s, Parser &p) { + "if", + [](Session &s, Parser &p) { auto args = parse_if(s, p); _if(s, args); },