cocos2d / bindings-generator

JSBindings generator for C++
170 stars 153 forks source link

fix std::function match for std::function<Ref *()> #131

Open litefeel opened 10 years ago

litefeel commented 10 years ago

old regex: function<(.+) .*\((.*)\)> now regex: function<(.+) *\((.*)\)>

input string is function<Ref *(void)> result about first group: old: Ref now: Ref *