Skip to content

Commit 050dc93

Browse files
Revert "Use pub(crate)"
This reverts commit c51213c.
1 parent 526dc4b commit 050dc93

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

crates/hir_expand/src/input.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ use syntax::{
77

88
use crate::{db::AstDatabase, name::AsName, AttrId, LazyMacroId, MacroCallKind, MacroCallLoc};
99

10-
pub(crate) fn process_macro_input(
11-
db: &dyn AstDatabase,
12-
node: SyntaxNode,
13-
id: LazyMacroId,
14-
) -> SyntaxNode {
10+
pub fn process_macro_input(db: &dyn AstDatabase, node: SyntaxNode, id: LazyMacroId) -> SyntaxNode {
1511
let loc: MacroCallLoc = db.lookup_intern_macro(id);
1612

1713
match loc.kind {

0 commit comments

Comments
 (0)