tuhdo / semantic-refactor

Semantic Refactor is a refactoring tool based on Semantic parser framework
267 stars 25 forks source link

Fix issue with function signature generation #9

Closed tuhdo closed 9 years ago

tuhdo commented 9 years ago

After some refactoring function like this can't be generated anymore:

void MyClass::myFunc(std::vector<std::string> argument)
{}

std::string is omitted, which was working in previous release.

tuhdo commented 9 years ago

@mijoharas this issue is fixed. Thank you very much for reporting. The function for generating proper code is already there, but for move and generate function prototype I forgot to reuse it and only use for generating function implementation.

mijoharas commented 9 years ago

brilliant, :+1: @tuhdo. Thanks!

mijoharas commented 9 years ago

just tried it out, works great!