aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_expand/src/eager.rs
diff options
context:
space:
mode:
authorBrandon <[email protected]>2021-03-17 06:31:14 +0000
committerBrandon <[email protected]>2021-03-17 06:31:14 +0000
commita79b5673e8f5d1f8d569bc7c984a293a972a7bb0 (patch)
tree61eb44cada0b64cd0fbf137bb2cc5f2600755330 /crates/hir_expand/src/eager.rs
parent0103f5df8fff2ccdbfb03adfe432b69c7840cf42 (diff)
Follow established ErrorEmitted pattern
Diffstat (limited to 'crates/hir_expand/src/eager.rs')
-rw-r--r--crates/hir_expand/src/eager.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_expand/src/eager.rs b/crates/hir_expand/src/eager.rs
index ae7b51a08..dc618a9ee 100644
--- a/crates/hir_expand/src/eager.rs
+++ b/crates/hir_expand/src/eager.rs
@@ -35,7 +35,7 @@ pub struct ErrorEmitted {
35 _private: (), 35 _private: (),
36} 36}
37 37
38trait ErrorSink { 38pub trait ErrorSink {
39 fn emit(&mut self, err: mbe::ExpandError); 39 fn emit(&mut self, err: mbe::ExpandError);
40 40
41 fn option<T>( 41 fn option<T>(