1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-01 07:43:04 +00:00

Avoid passing big parameters by value

clang-tidy check: performance-unnecessary-value-param
See https://clang.llvm.org/extra/clang-tidy/checks/performance-unnecessary-value-param.html
This commit is contained in:
Carles Fernandez
2019-07-20 11:39:08 +02:00
parent 49e64f94f6
commit f440a0e9f1
6 changed files with 8 additions and 8 deletions

View File

@@ -111,8 +111,8 @@ public:
void apply_action(unsigned int who, unsigned int what);
void push_back_signal(Gnss_Signal gs);
void remove_signal(Gnss_Signal gs);
void push_back_signal(const Gnss_Signal& gs);
void remove_signal(const Gnss_Signal& gs);
void set_configuration(std::shared_ptr<ConfigurationInterface> configuration);