Skip to content

Commit

Permalink
add dummy variables for passing build
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 8a30ac7 commit 5983d7f
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +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
return {false, false};
}

Expand Down Expand Up @@ -129,6 +130,8 @@ template <symmetry_tag current_sensor_symmetry_> class CurrentSensor : public Ge
template <symmetry_tag sym_calc>
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
return output;
}
};
Expand Down

0 comments on commit 5983d7f

Please sign in to comment.