mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-10-31 20:27:52 +00:00
Services: Make SessionDataBase's destructor virtual.
This commit is contained in:
parent
75f68c4860
commit
aa90198ec5
1 changed files with 3 additions and 1 deletions
|
@ -59,7 +59,9 @@ public:
|
|||
|
||||
/// Empty placeholder structure for services with no per-session data. The session data classes
|
||||
/// in each service must inherit from this.
|
||||
struct SessionDataBase {};
|
||||
struct SessionDataBase {
|
||||
virtual ~SessionDataBase() = default;
|
||||
};
|
||||
|
||||
protected:
|
||||
/// Creates the storage for the session data of the service.
|
||||
|
|
Loading…
Reference in a new issue