1
Fork 0

cleanup: run rustfmt

This commit is contained in:
Augie Fackler 2024-05-23 15:10:04 -04:00
parent 3ea494190f
commit a0581b5b7f
5 changed files with 26 additions and 12 deletions

View file

@ -56,7 +56,10 @@ pub trait WriteBackendMethods: 'static + Sized + Clone {
module: ModuleCodegen<Self::Module>,
config: &ModuleConfig,
) -> Result<CompiledModule, FatalError>;
fn prepare_thin(module: ModuleCodegen<Self::Module>, want_summary: bool) -> (String, Self::ThinBuffer);
fn prepare_thin(
module: ModuleCodegen<Self::Module>,
want_summary: bool,
) -> (String, Self::ThinBuffer);
fn serialize_module(module: ModuleCodegen<Self::Module>) -> (String, Self::ModuleBuffer);
}