profile: add move constructor and assignment operator to plot_info

To make Coverity happy.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2024-08-14 09:42:46 +02:00 committed by Michael Keller
parent 92abfb4b90
commit 2d5094a48b

View file

@ -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