mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-11-17 15:47:15 +00:00
Fix pedantic warning emitted by GCC 8.1.1 (fedora-rawhide)
The warning was: type qualifiers ignored on cast result type [-Wignored-qualifiers]
This commit is contained in:
@@ -539,7 +539,7 @@ bool run_volk_gnsssdr_tests(volk_gnsssdr_func_desc_t desc,
|
|||||||
vlen = vlen + vlen_twiddle;
|
vlen = vlen + vlen_twiddle;
|
||||||
|
|
||||||
const float tol_f = tol;
|
const float tol_f = tol;
|
||||||
const unsigned int tol_i = static_cast<const unsigned int>(tol);
|
const unsigned int tol_i = static_cast<unsigned int>(tol);
|
||||||
|
|
||||||
//first let's get a list of available architectures for the test
|
//first let's get a list of available architectures for the test
|
||||||
std::vector<std::string> arch_list = get_arch_list(desc);
|
std::vector<std::string> arch_list = get_arch_list(desc);
|
||||||
|
|||||||
Reference in New Issue
Block a user