Skip to content

Commit

Permalink
tool: remove redundant lifetime annotations
Browse files Browse the repository at this point in the history
Signed-off-by: James Archer <[email protected]>
  • Loading branch information
JE-Archer committed Jul 26, 2024
1 parent 18f4f27 commit fdad16f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tool/microkit/src/sysxml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -800,9 +800,9 @@ impl Channel {
}

impl DomainSchedule {
fn from_xml<'a>(
xml_sdf: &'a XmlSystemDescription,
node: &'a roxmltree::Node,
fn from_xml(
xml_sdf: &XmlSystemDescription,
node: &roxmltree::Node,
) -> Result<DomainSchedule, String> {
let pos = xml_sdf.doc.text_pos_at(node.range().start);

Expand Down

0 comments on commit fdad16f

Please sign in to comment.