mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-18 21:23:02 +00:00
Fix building with newest GNU Radio
This commit is contained in:
parent
c1f03135aa
commit
8ab82f9817
@ -344,9 +344,9 @@ int main(int argc, char** argv)
|
||||
{
|
||||
std::cout << "Exception caught while capturing samples (bad lexical cast)\n";
|
||||
}
|
||||
catch (const boost::io::too_few_args& e)
|
||||
catch (const std::exception& e)
|
||||
{
|
||||
std::cout << "Exception caught while capturing samples (too few args)\n";
|
||||
std::cout << "Exception caught while capturing samples: " << e.what() << '\n';
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user