Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Aug 19, 2024
1 parent 76af9cb commit c8e80ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/assembly/boundary/hypersingular.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ impl<'a, T: RlstScalar<Complex = T> + MatrixInverse> BoundaryAssembler
const TABLE_DERIVS: usize = 1;
type T = T;
fn options(&self) -> &BoundaryAssemblerOptions {
&self.options
self.options
}
fn options_mut(&mut self) -> &mut BoundaryAssemblerOptions {
panic!("Cannot get mutable options")
Expand Down Expand Up @@ -269,7 +269,7 @@ impl<'a, T: RlstScalar<Complex = T> + MatrixInverse> BoundaryAssembler
const TABLE_DERIVS: usize = 0;
type T = T;
fn options(&self) -> &BoundaryAssemblerOptions {
&self.options
self.options
}
fn options_mut(&mut self) -> &mut BoundaryAssemblerOptions {
panic!("Cannot get mutable options")
Expand Down

0 comments on commit c8e80ce

Please sign in to comment.