fmt: ran 'cargo fmt'.

This commit is contained in:
2025-06-29 01:43:31 +01:00
parent 21582f1297
commit 0528768947
4 changed files with 13 additions and 8 deletions
+2 -1
View File
@@ -5,7 +5,8 @@ pub struct Args {
/// The output format to assemble to. Currently just ELF or a flat binary.
#[arg(value_enum)]
output_format: Option<OutputFormat>,
/// Whether the relocatable object files should be statically linked into a single executable or library.
/// Whether the relocatable object files should be statically linked into a single
/// executable or library.
link: bool,
}
+2 -1
View File
@@ -18,7 +18,8 @@ impl Default for AssemblerContext {
}
impl AssemblerContext {
#[must_use] pub fn new() -> Self {
#[must_use]
pub fn new() -> Self {
Self {
symbol_table: RwLock::new(SymbolTable::new()),
module_registry: RwLock::new(ModuleRegistry::new()),