Merge pull request #3324 from Subv/gspgpu

Services: Keep track of per-session data in GSPGPU
This commit is contained in:
Weiyi Wang 2018-01-11 20:03:46 +02:00 committed by GitHub
commit 9b647d459b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 152 additions and 58 deletions

View file

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