removing an include that was not required

This commit is contained in:
Carles Fernandez 2015-02-05 01:14:04 +01:00
parent ee5a9ac5c4
commit 6b258c68ac
8 changed files with 8 additions and 17 deletions

View File

@ -32,7 +32,6 @@
#define GNSS_SDR_INTERLEAVED_BYTE_TO_COMPLEX_BYTE_H_
#include <string>
#include <boost/shared_ptr.hpp>
#include <gnuradio/sync_decimator.h>

View File

@ -31,8 +31,6 @@
#ifndef GNSS_SDR_INTERLEAVED_SHORT_TO_COMPLEX_SHORT_H_
#define GNSS_SDR_INTERLEAVED_SHORT_TO_COMPLEX_SHORT_H_
#include <string>
#include <boost/shared_ptr.hpp>
#include <gnuradio/sync_decimator.h>

View File

@ -107,7 +107,7 @@ FreqXlatingFirFilter::FreqXlatingFirFilter(ConfigurationInterface* configuration
}
else
{
LOG(ERROR) << taps_item_type_ << " unknown input filter item type";
LOG(ERROR) << " Unknown input filter input/output item type conversion";
item_size = sizeof(gr_complex); //avoids uninitialization
}
@ -186,7 +186,7 @@ void FreqXlatingFirFilter::connect(gr::top_block_sptr top_block)
}
else
{
LOG(ERROR) << " unknown input filter item type";
LOG(ERROR) << " Unknown input filter input/output item type conversion";
}
}
@ -252,7 +252,7 @@ void FreqXlatingFirFilter::disconnect(gr::top_block_sptr top_block)
}
else
{
LOG(ERROR) << " unknown input filter item type";
LOG(ERROR) << " Unknown input filter input/output item type conversion";
}
}
@ -292,7 +292,7 @@ gr::basic_block_sptr FreqXlatingFirFilter::get_left_block()
else
{
return nullptr;
LOG(ERROR) << " unknown input filter item type";
LOG(ERROR) << " Unknown input filter input/output item type conversion";
}
}
@ -332,7 +332,7 @@ gr::basic_block_sptr FreqXlatingFirFilter::get_right_block()
else
{
return nullptr;
LOG(ERROR) << " unknown input filter item type";
LOG(ERROR) << " Unknown input filter input/output item type conversion";
}
}

View File

@ -32,7 +32,6 @@
#define GNSS_SDR_BYTE_X2_TO_COMPLEX_BYTE_H_
#include <string>
#include <boost/shared_ptr.hpp>
#include <gnuradio/sync_block.h>

View File

@ -32,7 +32,6 @@
#define GNSS_SDR_COMPLEX_BYTE_TO_FLOAT_X2_H_
#include <string>
#include <boost/shared_ptr.hpp>
#include <gnuradio/sync_block.h>
@ -46,7 +45,7 @@ complex_byte_to_float_x2_sptr make_complex_byte_to_float_x2();
* \brief This class adapts a std::complex<signed char> stream
* into two 16-bits (short) streams
*/
class complex_byte_to_float_x2 : public gr::sync_block
class complex_byte_to_float_x2 : public gr::sync_block
{
private:
friend complex_byte_to_float_x2_sptr make_complex_byte_to_float_x2();

View File

@ -31,8 +31,6 @@
#ifndef GNSS_SDR_COMPLEX_FLOAT_TO_COMPLEX_BYTE_H_
#define GNSS_SDR_COMPLEX_FLOAT_TO_COMPLEX_BYTE_H_
#include <string>
#include <boost/shared_ptr.hpp>
#include <gnuradio/sync_block.h>
@ -45,7 +43,7 @@ complex_float_to_complex_byte_sptr make_complex_float_to_complex_byte();
/*!
* \brief This class adapts a gr_complex stream into a std::complex<signed char> stream
*/
class complex_float_to_complex_byte : public gr::sync_block
class complex_float_to_complex_byte : public gr::sync_block
{
private:
friend complex_float_to_complex_byte_sptr make_complex_float_to_complex_byte();

View File

@ -32,7 +32,6 @@
#define GNSS_SDR_CSHORT_TO_FLOAT_X2_H_
#include <string>
#include <boost/shared_ptr.hpp>
#include <gnuradio/sync_block.h>
@ -46,7 +45,7 @@ cshort_to_float_x2_sptr make_cshort_to_float_x2();
* \brief This class adapts a std::complex<short> stream
* into two 32-bits (float) streams
*/
class cshort_to_float_x2 : public gr::sync_block
class cshort_to_float_x2 : public gr::sync_block
{
private:
friend cshort_to_float_x2_sptr make_cshort_to_float_x2();

View File

@ -32,7 +32,6 @@
#define GNSS_SDR_SHORT_X2_TO_CSHORT_H_
#include <string>
#include <boost/shared_ptr.hpp>
#include <gnuradio/sync_block.h>