diff options
| author | bors <bors@rust-lang.org> | 2013-08-13 07:26:23 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-08-13 07:26:23 -0700 |
| commit | 0d817ee869387322dec4d3f7d407dcc9f91c2632 (patch) | |
| tree | 958140150cb50faae2b56a21bf4759261ec306d2 /src/libsyntax/codemap.rs | |
| parent | f02cc6bf0a276115a31354b1c1530e6fe9eb4d58 (diff) | |
| parent | 930885d5e5f817e3d7609f93d5ba89b1abebfaf4 (diff) | |
auto merge of #8423 : alexcrichton/rust/less-priv-again, r=bstrie
Closes #5495
Diffstat (limited to 'src/libsyntax/codemap.rs')
| -rw-r--r-- | src/libsyntax/codemap.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/codemap.rs b/src/libsyntax/codemap.rs index 8c70f128d9a..d4337523cfb 100644 --- a/src/libsyntax/codemap.rs +++ b/src/libsyntax/codemap.rs @@ -194,10 +194,10 @@ pub struct FileLines // represents the origin of a file: pub enum FileSubstr { // indicates that this is a normal standalone file: - pub FssNone, + FssNone, // indicates that this "file" is actually a substring // of another file that appears earlier in the codemap - pub FssInternal(span), + FssInternal(span), } /// Identifies an offset of a multi-byte character in a FileMap |
