Skip to content

Commit

Permalink
Remove unintentional overrides.
Browse files Browse the repository at this point in the history
  • Loading branch information
nealkruis committed May 27, 2024
1 parent a9b533b commit 361cd57
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 1 addition & 7 deletions include/btwxt/grid-axis.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,7 @@ class GridAxis : public Courier::Sender {
extrapolation_limits = limits;
check_extrapolation_limits();
}

void set_courier(std::shared_ptr<Courier::Courier> courier_in)
{
courier = std::move(courier_in);
}
std::shared_ptr<Courier::Courier> get_courier() { return courier; };


// Getters
[[nodiscard]] const std::vector<double>& get_values() const { return values; }
[[nodiscard]] std::size_t get_length() const { return values.size(); }
Expand Down
2 changes: 0 additions & 2 deletions src/regular-grid-interpolator-implementation.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ class RegularGridInterpolatorImplementation : public Courier::Sender {
return grid_axes[axis_index].get_extrapolation_limits();
};

[[nodiscard]] inline std::shared_ptr<Courier::Courier> get_courier() const { return courier; };

[[nodiscard]] inline std::size_t get_number_of_grid_axes() const
{
return number_of_grid_axes;
Expand Down

0 comments on commit 361cd57

Please sign in to comment.