chore(3p/sources): bump channels & overlays (2024-12-31)
Last one of the year! С наступающим)
Fixes:
* users/wpcarro: remove use-package from emacs packages (it has been built-in
for a while now)
* users/sterni: the same thing
* users/aspen: remove `coz`, forwardport `gdmap` from stable
* users/flokli: dropped corneish_zen firmware from CI
This firmware depends on a non-reproducible FOD which, when updated, causes
build failures. We have worked around this repeatedly, but it needs to be
fixed properly.
* tvix: regenerate Go protobufs
* tvix: address new clippy lints
* tvix/{castore,store,build}-go: update grpc/protobuf libraries
* tvix/eval: formatting fixes
* 3p/overlays/tvl: work around GCC 14 -Werrors
Change-Id: Ice5948ca7780192fb7d2abc6a48971fb875f03c9
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12933
Reviewed-by: tazjin <tazjin@tvl.su>
Reviewed-by: sterni <sternenseemann@systemli.org>
Reviewed-by: aspen <root@gws.fyi>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
This commit is contained in:
parent
bd73dff0bf
commit
54f72afcda
44 changed files with 516 additions and 578 deletions
|
|
@ -230,7 +230,7 @@ pub fn pin_generator(
|
|||
Box::pin(f)
|
||||
}
|
||||
|
||||
impl<'o, IO> VM<'o, IO>
|
||||
impl<IO> VM<'_, IO>
|
||||
where
|
||||
IO: AsRef<dyn EvalIO> + 'static,
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/// This module provides macros which are used in the implementation
|
||||
/// of the VM for the implementation of repetitive operations.
|
||||
|
||||
///
|
||||
/// This macro simplifies the implementation of arithmetic operations,
|
||||
/// correctly handling the behaviour on different pairings of number
|
||||
/// types.
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ trait GetSpan {
|
|||
fn get_span(self) -> Span;
|
||||
}
|
||||
|
||||
impl<'o, IO> GetSpan for &VM<'o, IO> {
|
||||
impl<IO> GetSpan for &VM<'_, IO> {
|
||||
fn get_span(self) -> Span {
|
||||
self.reasonable_span
|
||||
}
|
||||
|
|
@ -983,7 +983,7 @@ where
|
|||
}
|
||||
|
||||
/// Implementation of helper functions for the runtime logic above.
|
||||
impl<'o, IO> VM<'o, IO>
|
||||
impl<IO> VM<'_, IO>
|
||||
where
|
||||
IO: AsRef<dyn EvalIO> + 'static,
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue