Commit 6ddc48b8 authored by Robert Griesemer's avatar Robert Griesemer

- fixed a bug with //-comment parsing

R=r
OCL=25343
CL=25343
parent ce2bc3aa
......@@ -399,7 +399,6 @@ func (S *Scanner) scanComment() string {
if S.ch == '/' {
//-style comment
S.next();
for S.ch >= 0 {
S.next();
if S.ch == '\n' {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment