snazzy-d/sdc

sdfmt merges `#line` directive with following (...) line

maxhaton opened this issue · 1 comments

void main()
{
    #line 100
    printf("%m this is a string in errno");
}

sdfmt -i
yields

void main() {
	#line 100 printf("%m this is a string in errno");
}

which is not valid.

sdfmt does not do this anymore, closing.