Skip to content

Commit 34c713a

Browse files
committed
[lint] Run clang-format
1 parent 8f71ac0 commit 34c713a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/main.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ int main(int argc, char* argv[]) {
141141
return 0;
142142
};
143143

144-
auto test_page_cmd = new_flash_command("test-page", "Write a pattern to a page and read it back.");
144+
auto test_page_cmd =
145+
new_flash_command("test-page", "Write a pattern to a page and read it back.");
145146
test_page_cmd->add_argument("--addr")
146147
.help("The address to be loaded")
147148
.default_value(std::size_t{0})

lib/ftdi/spi_host.hh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ class SpiHost {
2828
public:
2929
explicit SpiHost(FT_HANDLE handle, bool mpsse = false) noexcept
3030
: handle(handle), mpsse(mpsse), traces(false) {}
31-
~SpiHost() {
32-
}
31+
~SpiHost() {}
3332

3433
void close() {
3534
if (mpsse) {

0 commit comments

Comments
 (0)