Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect conversion of multiword specificators in loop statements #14

Closed
ghost opened this issue Apr 1, 2014 · 0 comments
Closed

Incorrect conversion of multiword specificators in loop statements #14

ghost opened this issue Apr 1, 2014 · 0 comments

Comments

@ghost
Copy link

ghost commented Apr 1, 2014

The following code sample is converted incorrectly:

void main()
{
for(unsigned short i = 0; i <= 1; i++)
{
i = 0;
int j;
}
}

The result is:

void main()
{
{ unsigned short i = 0; for( short i = 0; i <= 1; i++)
{
i = 0;
{ int j;
} } }
}

rbultje added a commit that referenced this issue Apr 11, 2014
Bug fixes for issues #14 and #15, warnings elimination
@rbultje rbultje closed this as completed Apr 11, 2014
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

No branches or pull requests

1 participant