Services: Make SessionDataBase's destructor virtual.
This commit is contained in:
parent
75f68c4860
commit
aa90198ec5
|
@ -59,7 +59,9 @@ public:
|
||||||
|
|
||||||
/// Empty placeholder structure for services with no per-session data. The session data classes
|
/// Empty placeholder structure for services with no per-session data. The session data classes
|
||||||
/// in each service must inherit from this.
|
/// in each service must inherit from this.
|
||||||
struct SessionDataBase {};
|
struct SessionDataBase {
|
||||||
|
virtual ~SessionDataBase() = default;
|
||||||
|
};
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/// Creates the storage for the session data of the service.
|
/// Creates the storage for the session data of the service.
|
||||||
|
|
Reference in New Issue