diff options
author | Brandon <[email protected]> | 2021-03-17 06:31:14 +0000 |
---|---|---|
committer | Brandon <[email protected]> | 2021-03-17 06:31:14 +0000 |
commit | a79b5673e8f5d1f8d569bc7c984a293a972a7bb0 (patch) | |
tree | 61eb44cada0b64cd0fbf137bb2cc5f2600755330 /crates/hir_expand | |
parent | 0103f5df8fff2ccdbfb03adfe432b69c7840cf42 (diff) |
Follow established ErrorEmitted pattern
Diffstat (limited to 'crates/hir_expand')
-rw-r--r-- | crates/hir_expand/src/eager.rs | 2 |
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 | ||
38 | trait ErrorSink { | 38 | pub 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>( |