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:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user