diff --git a/core/profile.h b/core/profile.h index 405bbc1a7..2e0d9aaec 100644 --- a/core/profile.h +++ b/core/profile.h @@ -99,6 +99,10 @@ struct plot_info { plot_info(); ~plot_info(); + plot_info(const plot_info &) = default; + plot_info(plot_info &&) = default; + plot_info &operator=(const plot_info &) = default; + plot_info &operator=(plot_info &&) = default; }; #define AMB_PERCENTAGE 50.0