Temporarily revert delay_bug to delayed_bug change

This commit is contained in:
Laurențiu Nicola 2023-12-04 21:41:19 +02:00
parent 26c0963281
commit 6d2543b622

View file

@ -110,7 +110,7 @@ struct LayoutCx<'a> {
impl<'a> LayoutCalculator for LayoutCx<'a> { impl<'a> LayoutCalculator for LayoutCx<'a> {
type TargetDataLayoutRef = &'a TargetDataLayout; type TargetDataLayoutRef = &'a TargetDataLayout;
fn delayed_bug(&self, txt: String) { fn delay_bug(&self, txt: String) {
never!("{}", txt); never!("{}", txt);
} }