From 668a04befdc4ec43b2a6e86992c672ef5f8408e0 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Tue, 9 Mar 2021 10:38:42 +0100 Subject: host: Update code base using clang-tidy The checks from the new clang-tidy file are applied to the source tree using: $ find . -name "*.cpp" | sort -u | xargs \ --max-procs 8 --max-args 1 clang-tidy --format-style=file \ --fix -p /path/to/compile_commands.json Note: This is the same procedure as 107a49c0, but applied to all the new code since then. --- host/lib/transport/inline_io_service.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'host/lib/transport/inline_io_service.cpp') diff --git a/host/lib/transport/inline_io_service.cpp b/host/lib/transport/inline_io_service.cpp index 11835b285..7eb3072b7 100644 --- a/host/lib/transport/inline_io_service.cpp +++ b/host/lib/transport/inline_io_service.cpp @@ -207,7 +207,7 @@ public: _num_send_frames = num_send_frames; } - ~inline_recv_io() + ~inline_recv_io() override { _io_srv->disconnect_receiver(_data_link.get(), this); if (_fc_link) { @@ -263,7 +263,7 @@ public: _num_send_frames = num_send_frames; } - ~inline_send_io() + ~inline_send_io() override { _io_srv->disconnect_sender(_send_link.get()); if (_recv_link) { -- cgit v1.2.3