Code review changes and fix rustdoc test.

This commit is contained in:
Ben Lewis 2020-01-11 20:57:38 +13:00
parent a6c4025fac
commit 02fffc1556
5 changed files with 16 additions and 44 deletions

View file

@ -11,7 +11,7 @@ pub struct Simd<T, const WIDTH: usize> {
inner: T,
}
// @has foo/struct.Simd.html '//div[@id="implementations-list"]/h3/code' 'impl Add<Simd<u8, 16>> for Simd<u8, 16>'
// @has foo/struct.Simd.html '//div[@id="implementations-list"]/h3/code' 'impl Add<Simd<u8, 16usize>> for Simd<u8, 16>'
impl Add for Simd<u8, 16> {
type Output = Self;