1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-29 02:14:51 +00:00

Fix by clang-tidy

This commit is contained in:
Carles Fernandez 2019-02-10 12:53:22 +01:00
parent 21b5aeee9d
commit 96338be94e
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -199,7 +199,7 @@ std::unique_ptr<GNSSBlockInterface> GNSSBlockFactory::GetSignalSource(
}
std::string implementation = configuration->property(role + ".implementation", default_implementation);
LOG(INFO) << "Getting SignalSource with implementation " << implementation;
return GetBlock(configuration, role, implementation, 0, 1, std::move(queue));
return GetBlock(configuration, role, implementation, 0, 1, queue);
}