Skip to content

Commit

Permalink
unused vairables
Browse files Browse the repository at this point in the history
Signed-off-by: petersalemink95 <[email protected]>
  • Loading branch information
petersalemink95 committed Dec 31, 2024
1 parent 48656f6 commit 513ce1e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ template <symmetry_tag current_sensor_symmetry_> class CurrentSensor : public Ge

UpdateChange update(CurrentSensorUpdate<current_sensor_symmetry> const& update_data) {
// TODO
auto const dummy = update_data; // TODO: remove this line
(void)update_data; // Suppress unused variable warning
return {false, false};
}

Expand Down Expand Up @@ -131,7 +131,7 @@ template <symmetry_tag current_sensor_symmetry_> class CurrentSensor : public Ge
CurrentSensorOutput<sym_calc> get_generic_output(ComplexValue<sym_calc> const& i) const {
CurrentSensorOutput<sym_calc> output{};
// TODO
auto const dummy = i; // TODO: remove this line
(void)i; // Suppress unused variable warning
return output;
}
};
Expand Down

0 comments on commit 513ce1e

Please sign in to comment.