From 70b823609ab56479c0eb2b4cd16f0bde6c2f7484 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 24 Jun 2020 11:27:31 +0200 Subject: [PATCH] Sort private members --- src/algorithms/libs/pass_through.h | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/algorithms/libs/pass_through.h b/src/algorithms/libs/pass_through.h index c8eb40e8b..ef0f80b12 100644 --- a/src/algorithms/libs/pass_through.h +++ b/src/algorithms/libs/pass_through.h @@ -74,15 +74,18 @@ public: gr::basic_block_sptr get_right_block() override; private: - std::string item_type_; - std::string role_; - unsigned int in_streams_; - unsigned int out_streams_; gr::blocks::copy::sptr kludge_copy_; - size_t item_size_; conjugate_cc_sptr conjugate_cc_; conjugate_sc_sptr conjugate_sc_; conjugate_ic_sptr conjugate_ic_; + + std::string item_type_; + std::string role_; + size_t item_size_; + + unsigned int in_streams_; + unsigned int out_streams_; + bool inverted_spectrum; };