mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-22 21:05:11 +00:00
Merge pull request #512 from camelid/unit-update
Impl `Update` for unit type `()`
This commit is contained in:
commit
5f35a3529d
1 changed files with 2 additions and 0 deletions
|
@ -337,6 +337,7 @@ macro_rules! tuple_impl {
|
||||||
let ($($t,)*) = new_value;
|
let ($($t,)*) = new_value;
|
||||||
let ($($u,)*) = unsafe { &mut *old_pointer };
|
let ($($u,)*) = unsafe { &mut *old_pointer };
|
||||||
|
|
||||||
|
#[allow(unused_mut)]
|
||||||
let mut changed = false;
|
let mut changed = false;
|
||||||
$(
|
$(
|
||||||
unsafe { changed |= Update::maybe_update($u, $t); }
|
unsafe { changed |= Update::maybe_update($u, $t); }
|
||||||
|
@ -348,6 +349,7 @@ macro_rules! tuple_impl {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create implementations for tuples up to arity 12
|
// Create implementations for tuples up to arity 12
|
||||||
|
tuple_impl!(;);
|
||||||
tuple_impl!(A; a);
|
tuple_impl!(A; a);
|
||||||
tuple_impl!(A, B; a, b);
|
tuple_impl!(A, B; a, b);
|
||||||
tuple_impl!(A, B, C; a, b, c);
|
tuple_impl!(A, B, C; a, b, c);
|
||||||
|
|
Loading…
Reference in a new issue