Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions assembler/src/asmlib/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1828,7 +1828,7 @@ impl InstructionSequence {
}

#[allow(clippy::too_many_arguments)]
pub(crate) fn build_binary_block<'s, R: RcUpdater>(
pub(crate) fn build_binary_block<R: RcUpdater>(
&self,
location: Address,
start_offset: Unsigned18Bit,
Expand All @@ -1838,7 +1838,7 @@ impl InstructionSequence {
index_register_assigner: &mut IndexRegisterAssigner,
rc_allocator: &mut R,
final_symbols: &mut FinalSymbolTable,
body: &Source<'s>,
body: &Source<'_>,
listing: &mut Listing,
bad_symbol_definitions: &mut BTreeMap<SymbolName, ProgramError>,
) -> Result<Vec<Unsigned36Bit>, AssemblerFailure> {
Expand Down
4 changes: 2 additions & 2 deletions assembler/src/asmlib/symtab.rs
Original file line number Diff line number Diff line change
Expand Up @@ -440,8 +440,8 @@ pub(super) fn assign_default_rc_word_tags<R: RcAllocator>(
Ok(())
}

pub(super) fn record_undefined_symbol_or_return_failure<'s>(
source_file_body: &Source<'s>,
pub(super) fn record_undefined_symbol_or_return_failure(
source_file_body: &Source<'_>,
e: SymbolLookupFailure,
undefined_symbols: &mut BTreeMap<SymbolName, ProgramError>,
) -> Result<(), AssemblerFailure> {
Expand Down
Loading