diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2021-01-18 12:42:33 +0100 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2021-01-19 12:21:46 +0100 |
commit | d1ba72a0fe5e8deabc6f94cd7bf97a030438c7ee (patch) | |
tree | 4971b9715934c0fe1f5d23c7de1a925a2b8af7f5 /gr-digital/lib/constellation_encoder_bc_impl.h | |
parent | 3c5b6181d62110bd78628ad356ac03f69ce0c5b0 (diff) |
clang-tidy: run full .clang-tidy on C++17 codebase
run
/usr/share/clang/run-clang-tidy.py -checks=file '-header-filter=.*'
-fix ..
from build directory.
Then,
clang-format -i $(git diff --name-only origin/master)
to clang-format changed files.
Then, refresh all header hashes in pybind bindings
(*/python/bindings/*.cc)
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
Diffstat (limited to 'gr-digital/lib/constellation_encoder_bc_impl.h')
-rw-r--r-- | gr-digital/lib/constellation_encoder_bc_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-digital/lib/constellation_encoder_bc_impl.h b/gr-digital/lib/constellation_encoder_bc_impl.h index 9b84403305..122a570923 100644 --- a/gr-digital/lib/constellation_encoder_bc_impl.h +++ b/gr-digital/lib/constellation_encoder_bc_impl.h @@ -23,11 +23,11 @@ private: public: constellation_encoder_bc_impl(constellation_sptr constellation); - ~constellation_encoder_bc_impl(); + ~constellation_encoder_bc_impl() override; int work(int noutput_items, gr_vector_const_void_star& input_items, - gr_vector_void_star& output_items); + gr_vector_void_star& output_items) override; }; } /* namespace digital */ |