diff options
Diffstat (limited to 'gr-fec/lib/tpc_encoder.cc')
-rw-r--r-- | gr-fec/lib/tpc_encoder.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gr-fec/lib/tpc_encoder.cc b/gr-fec/lib/tpc_encoder.cc index 381235c62c..44862a02d4 100644 --- a/gr-fec/lib/tpc_encoder.cc +++ b/gr-fec/lib/tpc_encoder.cc @@ -20,19 +20,19 @@ * Boston, MA 02110-1301, USA. */ -#include <gnuradio/fec/tpc_encoder.h> -#include <gnuradio/fec/tpc_common.h> #include <gnuradio/fec/generic_encoder.h> +#include <gnuradio/fec/tpc_common.h> +#include <gnuradio/fec/tpc_encoder.h> #include <math.h> -#include <boost/assign/list_of.hpp> +#include <stdio.h> #include <volk/volk.h> +#include <boost/assign/list_of.hpp> #include <sstream> -#include <stdio.h> #include <vector> -#include <algorithm> // for std::reverse #include <string.h> // for memcpy +#include <algorithm> // for std::reverse namespace gr { namespace fec { |