about summary refs log tree commit diff
path: root/compiler/rustc_span/src/analyze_source_file.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-08-30 13:15:02 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2024-09-03 08:49:54 +1000
commitb0f22ff98ff345aa7daf8c2f67d5b55f721c366a (patch)
treef4b453a3cad5bb6fc51b323ada94e3528857b8d2 /compiler/rustc_span/src/analyze_source_file.rs
parentb457ab31860b9c92fd2a52c7a2ca328a04cdfa23 (diff)
downloadrust-b0f22ff98ff345aa7daf8c2f67d5b55f721c366a.tar.gz
rust-b0f22ff98ff345aa7daf8c2f67d5b55f721c366a.zip
Add `warn(unreachable_pub)` to `rustc_span`.
Diffstat (limited to 'compiler/rustc_span/src/analyze_source_file.rs')
-rw-r--r--compiler/rustc_span/src/analyze_source_file.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_span/src/analyze_source_file.rs b/compiler/rustc_span/src/analyze_source_file.rs
index ba7e0cec5bd..28ce883daee 100644
--- a/compiler/rustc_span/src/analyze_source_file.rs
+++ b/compiler/rustc_span/src/analyze_source_file.rs
@@ -8,7 +8,7 @@ mod tests;
 ///
 /// This function will use an SSE2 enhanced implementation if hardware support
 /// is detected at runtime.
-pub fn analyze_source_file(src: &str) -> (Vec<RelativeBytePos>, Vec<MultiByteChar>) {
+pub(crate) fn analyze_source_file(src: &str) -> (Vec<RelativeBytePos>, Vec<MultiByteChar>) {
     let mut lines = vec![RelativeBytePos::from_u32(0)];
     let mut multi_byte_chars = vec![];