1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-24 05:53:16 +00:00

Catch missing exception

This commit is contained in:
Carles Fernandez 2018-05-21 04:19:42 +02:00
parent 559cc00bd7
commit 8a7f145d47
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -565,6 +565,11 @@ bool run_volk_gnsssdr_tests(volk_gnsssdr_func_desc_t desc,
std::cerr << " - " << name << std::endl;
return false;
}
catch (std::string s)
{
std::cerr << "Error: " << s << std::endl;
return false;
}
//pull the input scalars into their own vector
std::vector<volk_gnsssdr_type_t> inputsc;