mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-11-18 08:05:17 +00:00
Do not fail if gr-zeromq is not present. Make CI jobs happy.
This commit is contained in:
@@ -95,9 +95,13 @@ auto ZmqSignalSource::get_right_block() -> gr::basic_block_sptr
|
||||
auto result = gr::basic_block_sptr();
|
||||
|
||||
if (d_vec_block)
|
||||
result = d_vec_block; // NOLINT
|
||||
{
|
||||
result = d_vec_block;
|
||||
}
|
||||
else
|
||||
result = d_source_block; // NOLINT
|
||||
{
|
||||
result = d_source_block;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user