Tidying lambdas

This commit is contained in:
Nav
2021-10-08 23:08:15 +01:00
parent c4b8c97897
commit 356c06f4f3
11 changed files with 27 additions and 27 deletions

View File

@@ -45,7 +45,7 @@ namespace Bloom
return std::map<std::string, std::function<std::unique_ptr<DebugServers::DebugServer>()>> {
{
"avr-gdb-rsp",
[this]() -> std::unique_ptr<DebugServers::DebugServer> {
[this] () -> std::unique_ptr<DebugServers::DebugServer> {
return std::make_unique<DebugServers::Gdb::AvrGdbRsp>(this->eventManager);
}
},