7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-19 22:51:40 +00:00

Fix another lambda capture

This commit is contained in:
Marek Roszko 2024-04-12 23:37:38 -04:00
parent 262d94964f
commit c05ae0b32e

View File

@ -98,7 +98,7 @@ protected:
wxString::Format( "Duplicate API handler for type %s", typeName ) );
m_handlers[typeName] =
[=]( ApiRequest& aRequest ) -> API_RESULT
[this]( ApiRequest& aRequest ) -> API_RESULT
{
RequestType cmd;
ApiResponse envelope;