mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
Fix C5204 warnings by adding default virtual destructors
This commit is contained in:
parent
4c5d2feee8
commit
2e7712a390
15 changed files with 41 additions and 5 deletions
|
@ -29,6 +29,8 @@ namespace Loading
|
|||
virtual void setProgress (size_t value) {}
|
||||
/// Increase current progress, default by 1.
|
||||
virtual void increaseProgress (size_t increase = 1) {}
|
||||
|
||||
virtual ~Listener() = default;
|
||||
};
|
||||
|
||||
/// @brief Used for stopping a loading sequence when the object goes out of scope
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue