Skip to content

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

Open
meetleev wants to merge 2 commits intococos2d:v3from
meetleev:v3
Open

fix auto bindings for using lambda ''std::function<.*(std::map<std::s…#245
meetleev wants to merge 2 commits intococos2d:v3from
meetleev:v3

Conversation

@meetleev
Copy link
Copy Markdown

@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