Skip to content

Commit

Permalink
fix clang tidy
Browse files Browse the repository at this point in the history
Signed-off-by: Martijn Govers <[email protected]>
  • Loading branch information
mgovers committed Feb 6, 2024
1 parent f7e2cf0 commit cdcd535
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ template <bool sym> class NewtonRaphsonSESolver {
/// @param y_bus
void fill_qt(YBus<sym> const& y_bus) {
iterate_matrix_skip_fills(
[this](Idx row, Idx col, Idx data_idx, Idx data_idx_transpose) {
[this](Idx /* row */, Idx /* col */, Idx data_idx, Idx data_idx_transpose) {
auto& block = data_gain_[data_idx];

block.qt_P_theta() = data_gain_[data_idx_transpose].q_P_theta();
Expand All @@ -466,7 +466,7 @@ template <bool sym> class NewtonRaphsonSESolver {
/// @param y_bus
void process_lagrange_multiplier(YBus<sym> const& y_bus) {
iterate_matrix_skip_fills(
[this](Idx row, Idx col, Idx data_idx, Idx data_idx_transpose) {
[this](Idx row, Idx col, Idx data_idx, Idx /* data_idx_transpose */) {
auto& block = data_gain_[data_idx];
auto& rhs_block = delta_x_rhs_[row];

Expand Down

0 comments on commit cdcd535

Please sign in to comment.