Fix #321
This commit is contained in:
parent
19a869377a
commit
5aedb2b84b
|
@ -313,7 +313,7 @@ private:
|
||||||
write(" ");
|
write(" ");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (currentIs(tok!"scriptLine"))
|
else if (currentIs(tok!"scriptLine") || currentIs(tok!"specialTokenSequence"))
|
||||||
{
|
{
|
||||||
writeToken();
|
writeToken();
|
||||||
newline();
|
newline();
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
void test()
|
||||||
|
{
|
||||||
|
#line 100
|
||||||
|
int a;
|
||||||
|
#line 200 "anotherfile"
|
||||||
|
int b;
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
void test(){
|
||||||
|
#line 100
|
||||||
|
int a;
|
||||||
|
#line 200 "anotherfile"
|
||||||
|
int b;
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
void test() {
|
||||||
|
#line 100
|
||||||
|
int a;
|
||||||
|
#line 200 "anotherfile"
|
||||||
|
int b;
|
||||||
|
}
|
Loading…
Reference in New Issue