From d4c40aa355de33f4f5bc14eb61ceb213b4d7d44f Mon Sep 17 00:00:00 2001 From: Gavin Ridley Date: Fri, 15 Sep 2023 17:46:54 -0400 Subject: [PATCH] remove meaningless const qualifiers from plot.h (#2695) --- include/openmc/plot.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/openmc/plot.h b/include/openmc/plot.h index deb02180b..3e97e2544 100644 --- a/include/openmc/plot.h +++ b/include/openmc/plot.h @@ -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);