diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-04-26 07:56:48 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-04-26 13:29:20 +1000 |
| commit | 30d6f63b4eb24b830c4cee5512401b0f4e61d289 (patch) | |
| tree | 7380486d5b67e97e167ec09981428756d04eab82 /compiler/rustc_builtin_macros/src/log_syntax.rs | |
| parent | 8dc84fa7d17980424b22909207056214663d0526 (diff) | |
| download | rust-30d6f63b4eb24b830c4cee5512401b0f4e61d289.tar.gz rust-30d6f63b4eb24b830c4cee5512401b0f4e61d289.zip | |
Adjust some `pub`s.
Diffstat (limited to 'compiler/rustc_builtin_macros/src/log_syntax.rs')
| -rw-r--r-- | compiler/rustc_builtin_macros/src/log_syntax.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_builtin_macros/src/log_syntax.rs b/compiler/rustc_builtin_macros/src/log_syntax.rs index 288a475ac24..205f21ae7c9 100644 --- a/compiler/rustc_builtin_macros/src/log_syntax.rs +++ b/compiler/rustc_builtin_macros/src/log_syntax.rs @@ -2,7 +2,7 @@ use rustc_ast::tokenstream::TokenStream; use rustc_ast_pretty::pprust; use rustc_expand::base::{DummyResult, ExpandResult, ExtCtxt, MacroExpanderResult}; -pub fn expand_log_syntax<'cx>( +pub(crate) fn expand_log_syntax<'cx>( _cx: &'cx mut ExtCtxt<'_>, sp: rustc_span::Span, tts: TokenStream, |
