1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-16 10:09:58 +00:00

Apply clang-tidy: performance-move-const-arg check

This commit is contained in:
Carles Fernandez 2019-10-03 01:45:23 +02:00
parent d20284fbc0
commit 3fbc239a03
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -191,7 +191,7 @@ void GpsL1CADllPllTrackingTestFpga_msg_rx::msg_handler_events(const pmt::pmt_t &
{
try
{
int64_t message = pmt::to_long(std::move(msg));
int64_t message = pmt::to_long(msg);
rx_message = message;
}
catch (boost::bad_any_cast &e)