diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-08-09 01:25:24 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-08-12 23:20:46 -0700 |
| commit | 930885d5e5f817e3d7609f93d5ba89b1abebfaf4 (patch) | |
| tree | 16719bb119d7e3f0aa056d4c3391d6e968bd1198 /src/libsyntax/codemap.rs | |
| parent | 44675ac6aff91889f960655b0034964740415e8c (diff) | |
| download | rust-930885d5e5f817e3d7609f93d5ba89b1abebfaf4.tar.gz rust-930885d5e5f817e3d7609f93d5ba89b1abebfaf4.zip | |
Forbid pub/priv where it has no effect
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 |
