fix: missing interpolation (impl CodeGen for Block, RegisterInterface)

This commit is contained in:
Wataru Otsubo 2025-02-02 16:57:07 +09:00
parent 9e7a83242b
commit cba4b3af05

View file

@ -209,7 +209,7 @@ impl CodeGen for Block {
use std::marker::PhantomData;
use super::RegisterInterface;
use super::#parent;
#(#code_children)*
@ -217,7 +217,7 @@ impl CodeGen for Block {
pub struct #upper_camel_name<'a> {
mem_ptr: *mut u32,
_marker: PhantomData<&'a mut RegisterInterface>,
_marker: PhantomData<&'a mut #parent_struct>,
}
impl #upper_camel_name<'_> {