diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2022-11-25 17:39:38 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2022-12-01 18:51:05 +0300 |
| commit | 1f259ae6799e7e0a08e5b84fc5686e404b17eef0 (patch) | |
| tree | 388417f61bf1eb19e633f3e613353f01c05b8730 /compiler/rustc_data_structures/src | |
| parent | 6cd4dd3091dfe0ce4a728bd9ae177361fba23736 (diff) | |
| download | rust-1f259ae6799e7e0a08e5b84fc5686e404b17eef0.tar.gz rust-1f259ae6799e7e0a08e5b84fc5686e404b17eef0.zip | |
rustc_hir: Change representation of import paths to support multiple resolutions
Diffstat (limited to 'compiler/rustc_data_structures/src')
| -rw-r--r-- | compiler/rustc_data_structures/src/stable_hasher.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/stable_hasher.rs b/compiler/rustc_data_structures/src/stable_hasher.rs index ce859173418..e2c33e7e062 100644 --- a/compiler/rustc_data_structures/src/stable_hasher.rs +++ b/compiler/rustc_data_structures/src/stable_hasher.rs @@ -399,7 +399,7 @@ where } } -impl<A, CTX> HashStable<CTX> for SmallVec<[A; 1]> +impl<A, const N: usize, CTX> HashStable<CTX> for SmallVec<[A; N]> where A: HashStable<CTX>, { |
