From 2af088529fbb4baf2fa4e71735c27ffa9edefd3d Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 16 Nov 2012 14:55:52 -0800 Subject: [PATCH] Remove incorrect comment from codemap --- src/libsyntax/codemap.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libsyntax/codemap.rs b/src/libsyntax/codemap.rs index 8f42e1b1a59..cb039b25ccf 100644 --- a/src/libsyntax/codemap.rs +++ b/src/libsyntax/codemap.rs @@ -141,8 +141,6 @@ impl span: Deserializable { } } -// XXX col shouldn't be CharPos because col is not an absolute location in the -// codemap, and BytePos and CharPos always represent absolute positions pub struct Loc { file: @FileMap, line: uint, col: CharPos }