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