mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 06:15:26 +00:00
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:
parent
92abfb4b90
commit
2d5094a48b
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue