1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-06 18:23:05 +00:00

Improve const correctness

This commit is contained in:
Carles Fernandez
2019-06-29 22:04:03 +02:00
parent dd3b2f11db
commit b6e9ba5877
12 changed files with 12 additions and 12 deletions

View File

@@ -1511,7 +1511,7 @@ void GNSSFlowgraph::apply_action(unsigned int who, unsigned int what)
}
void GNSSFlowgraph::priorize_satellites(std::vector<std::pair<int, Gnss_Satellite>> visible_satellites)
void GNSSFlowgraph::priorize_satellites(const std::vector<std::pair<int, Gnss_Satellite>>& visible_satellites)
{
size_t old_size;
Gnss_Signal gs;