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

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

Open litefeel opened this issue 9 years ago • 0 comments

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

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

litefeel avatar Aug 20 '14 18:08 litefeel