bindings-generator icon indicating copy to clipboard operation
bindings-generator copied to clipboard

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

Open meetleev opened this issue 6 years ago • 0 comments

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 {}

meetleev avatar May 02 '18 06:05 meetleev