1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-15 04:30:33 +00:00

Ignore modernize-avoid-bind clang-tidy fix

This commit is contained in:
Carles Fernandez 2020-04-26 11:07:19 +02:00
parent 5bde93f08c
commit 6de4d28ab1
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -48,13 +48,13 @@ TcpCmdInterface::TcpCmdInterface()
void TcpCmdInterface::register_functions() void TcpCmdInterface::register_functions()
{ {
functions["status"] = std::bind(&TcpCmdInterface::status, 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); functions["standby"] = std::bind(&TcpCmdInterface::standby, this, std::placeholders::_1); // NOLINT(modernize-avoid-bind)
functions["reset"] = std::bind(&TcpCmdInterface::reset, this, std::placeholders::_1); functions["reset"] = std::bind(&TcpCmdInterface::reset, this, std::placeholders::_1); // NOLINT(modernize-avoid-bind)
functions["hotstart"] = std::bind(&TcpCmdInterface::hotstart, this, std::placeholders::_1); functions["hotstart"] = std::bind(&TcpCmdInterface::hotstart, this, std::placeholders::_1); // NOLINT(modernize-avoid-bind)
functions["warmstart"] = std::bind(&TcpCmdInterface::warmstart, this, std::placeholders::_1); functions["warmstart"] = std::bind(&TcpCmdInterface::warmstart, this, std::placeholders::_1); // NOLINT(modernize-avoid-bind)
functions["coldstart"] = std::bind(&TcpCmdInterface::coldstart, this, std::placeholders::_1); 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); functions["set_ch_satellite"] = std::bind(&TcpCmdInterface::set_ch_satellite, this, std::placeholders::_1); // NOLINT(modernize-avoid-bind)
} }