diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-01-13 16:44:20 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-13 16:44:20 +0900 |
| commit | ce8f3207932d6e0d824cde3fb3db012ecc2a575d (patch) | |
| tree | 431a7cfb62f39700b1babf9b7df11761a53af5c6 | |
| parent | ca806cfe453188ca432fdca3116ea195e74c39e4 (diff) | |
| parent | a404cfabc704971d4a9d1dca317fd9f0c325d906 (diff) | |
| download | rust-ce8f3207932d6e0d824cde3fb3db012ecc2a575d.tar.gz rust-ce8f3207932d6e0d824cde3fb3db012ecc2a575d.zip | |
Rollup merge of #68145 - JohnTitor:pub-check-lint-name-result, r=Centril
Expose `context::CheckLintNameResult` Clippy needs it r? @Centril
| -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}; |
