remove meaningless const qualifiers from plot.h (#2695)

This commit is contained in:
Gavin Ridley 2023-09-15 17:46:54 -04:00 committed by GitHub
parent 98fe64dd5a
commit d4c40aa355
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,8 +99,8 @@ public:
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);