1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-09-01 10:28:00 +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

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);
}