Skip to content

Conversation

@meetleev
Copy link

@meetleev meetleev commented May 2, 2018

fix auto bindings for using lambda ''std::function<.*(std::map<std::string, std::string> )>'

bindings old:
auto lambda = [=](std::map<std::string larg0, std::string> larg1) -> void {}

bindings now:
auto lambda = [=](std::map<std::string, std::string> larg0) -> void {}

Lee and others added 2 commits May 2, 2018 14:54
…tring, std::string> )>'

fix befoe:
 auto lambda = [=](std::map<std::string larg0, std::string> larg1) -> void {}

fix ago:
 auto lambda = [=](std::map<std::string, std::string> larg0) -> void {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant