mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-15 04:30:33 +00:00
Fix warning of unused private member
This commit is contained in:
parent
74ae513d70
commit
88363482ef
@ -68,6 +68,14 @@ BeamformerFilter::BeamformerFilter(
|
|||||||
DLOG(INFO) << "file_sink(" << file_sink_->unique_id() << ")";
|
DLOG(INFO) << "file_sink(" << file_sink_->unique_id() << ")";
|
||||||
}
|
}
|
||||||
samples_ = 0;
|
samples_ = 0;
|
||||||
|
if (in_stream_ > 8)
|
||||||
|
{
|
||||||
|
LOG(ERROR) << "This implementation only supports eight input streams";
|
||||||
|
}
|
||||||
|
if (out_stream_ > 1)
|
||||||
|
{
|
||||||
|
LOG(ERROR) << "This implementation only supports one output stream";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user