Commit 5945b251 authored by Robert Griesemer's avatar Robert Griesemer

- adjust to new token.Position definition

R=rsc
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=31574
CL=31604
parent 2d58fa6f
......@@ -55,7 +55,7 @@ func (p *printer) nextComment() {
if p.comments != nil && p.cindex < len(p.comments) && p.comments[p.cindex] != nil {
p.cpos = p.comments[p.cindex].List[0].Pos();
} else {
p.cpos = token.Position{1<<30, 1<<30, 1}; // infinite
p.cpos = token.Position{"", 1<<30, 1<<30, 1}; // infinite
}
}
......
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