Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix auto bindings for using lambda ''std::function<.*(std::map<std::s… #245

Open
wants to merge 2 commits into
base: v3
Choose a base branch
from

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