mirror of
				https://github.com/gnss-sdr/gnss-sdr
				synced 2025-10-31 07:13:03 +00:00 
			
		
		
		
	Ignore modernize-avoid-bind clang-tidy fix
This commit is contained in:
		| @@ -48,13 +48,13 @@ TcpCmdInterface::TcpCmdInterface() | ||||
|  | ||||
| void TcpCmdInterface::register_functions() | ||||
| { | ||||
|     functions["status"] = std::bind(&TcpCmdInterface::status, this, std::placeholders::_1); | ||||
|     functions["standby"] = std::bind(&TcpCmdInterface::standby, this, std::placeholders::_1); | ||||
|     functions["reset"] = std::bind(&TcpCmdInterface::reset, this, std::placeholders::_1); | ||||
|     functions["hotstart"] = std::bind(&TcpCmdInterface::hotstart, this, std::placeholders::_1); | ||||
|     functions["warmstart"] = std::bind(&TcpCmdInterface::warmstart, this, std::placeholders::_1); | ||||
|     functions["coldstart"] = std::bind(&TcpCmdInterface::coldstart, this, std::placeholders::_1); | ||||
|     functions["set_ch_satellite"] = std::bind(&TcpCmdInterface::set_ch_satellite, this, std::placeholders::_1); | ||||
|     functions["status"] = std::bind(&TcpCmdInterface::status, this, std::placeholders::_1);                      // NOLINT(modernize-avoid-bind) | ||||
|     functions["standby"] = std::bind(&TcpCmdInterface::standby, this, std::placeholders::_1);                    // NOLINT(modernize-avoid-bind) | ||||
|     functions["reset"] = std::bind(&TcpCmdInterface::reset, this, std::placeholders::_1);                        // NOLINT(modernize-avoid-bind) | ||||
|     functions["hotstart"] = std::bind(&TcpCmdInterface::hotstart, this, std::placeholders::_1);                  // NOLINT(modernize-avoid-bind) | ||||
|     functions["warmstart"] = std::bind(&TcpCmdInterface::warmstart, this, std::placeholders::_1);                // NOLINT(modernize-avoid-bind) | ||||
|     functions["coldstart"] = std::bind(&TcpCmdInterface::coldstart, this, std::placeholders::_1);                // NOLINT(modernize-avoid-bind) | ||||
|     functions["set_ch_satellite"] = std::bind(&TcpCmdInterface::set_ch_satellite, this, std::placeholders::_1);  // NOLINT(modernize-avoid-bind) | ||||
| } | ||||
|  | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Carles Fernandez
					Carles Fernandez