Skip to content

Commit

Permalink
remove meaningless const qualifiers from plot.h (#2695)
Browse files Browse the repository at this point in the history
  • Loading branch information
gridley authored Sep 15, 2023
1 parent 98fe64d commit d4c40aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/openmc/plot.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ class PlottableInterface {
virtual void print_info() const = 0;

const std::string& path_plot() const { return path_plot_; }
const int id() const { return id_; }
const int level() const { return level_; }
int id() const { return id_; }
int level() const { return level_; }

// Public color-related data
PlottableInterface(pugi::xml_node plot_node);
Expand Down

0 comments on commit d4c40aa

Please sign in to comment.