1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-19 05:33:02 +00:00

Fix clang-tidy bugprone-exception-escape check

This commit is contained in:
Carles Fernandez 2022-12-17 14:36:35 +01:00
parent 4a4d2d134e
commit 244d2c87d1
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -1147,7 +1147,7 @@ rtklib_pvt_gs::~rtklib_pvt_gs()
} }
} }
} }
catch (std::length_error& e) catch (const std::exception& e)
{ {
LOG(WARNING) << e.what(); LOG(WARNING) << e.what();
} }