diff options
| author | Jason Newcomb <jsnewcomb@pm.me> | 2022-05-26 13:57:05 -0400 |
|---|---|---|
| committer | Jason Newcomb <jsnewcomb@pm.me> | 2022-05-26 14:43:33 -0400 |
| commit | 7975d41a915b7e2c0b5ce2e2ca47ab31b96d978a (patch) | |
| tree | 5fec793147b96430b7ff541cce724fb8c563534d /clippy_utils/src/lib.rs | |
| parent | 91644d1f1d1a8029830d7c17595ec8c32b8ccde6 (diff) | |
| download | rust-7975d41a915b7e2c0b5ce2e2ca47ab31b96d978a.tar.gz rust-7975d41a915b7e2c0b5ce2e2ca47ab31b96d978a.zip | |
Rework `branches_sharing_code`
Diffstat (limited to 'clippy_utils/src/lib.rs')
| -rw-r--r-- | clippy_utils/src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clippy_utils/src/lib.rs b/clippy_utils/src/lib.rs index adb37cc9d75..bcaa9571a05 100644 --- a/clippy_utils/src/lib.rs +++ b/clippy_utils/src/lib.rs @@ -58,7 +58,9 @@ pub mod usage; pub mod visitors; pub use self::attrs::*; -pub use self::hir_utils::{both, count_eq, eq_expr_value, over, SpanlessEq, SpanlessHash}; +pub use self::hir_utils::{ + both, count_eq, eq_expr_value, hash_expr, hash_stmt, over, HirEqInterExpr, SpanlessEq, SpanlessHash, +}; use std::collections::hash_map::Entry; use std::hash::BuildHasherDefault; |
