diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-01-12 15:25:41 +0900 |
|---|---|---|
| committer | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-01-12 15:25:41 +0900 |
| commit | a404cfabc704971d4a9d1dca317fd9f0c325d906 (patch) | |
| tree | fdc683629c25df0e4a91c6fd3833fe6c0fc6f49a | |
| parent | 0b6c116a84fb1dbb60b5870291f5d7df808c280d (diff) | |
| download | rust-a404cfabc704971d4a9d1dca317fd9f0c325d906.tar.gz rust-a404cfabc704971d4a9d1dca317fd9f0c325d906.zip | |
Expose `context::CheckLintNameResult`
Clippy needs it
| -rw-r--r-- | src/librustc_lint/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_lint/lib.rs b/src/librustc_lint/lib.rs index 6e3382dee9a..78e9d0f14f2 100644 --- a/src/librustc_lint/lib.rs +++ b/src/librustc_lint/lib.rs @@ -76,7 +76,7 @@ use unused::*; /// Useful for other parts of the compiler / Clippy. pub use builtin::SoftLints; -pub use context::{EarlyContext, LateContext, LintContext, LintStore}; +pub use context::{CheckLintNameResult, EarlyContext, LateContext, LintContext, LintStore}; pub use early::check_ast_crate; pub use late::check_crate; pub use passes::{EarlyLintPass, LateLintPass}; |
