Merge pull request #1264 from bmzhao/fix-failing-linux-build

Fix Linux build errors due to missing virtual destructors
This commit is contained in:
Rick Gibbed
2018-11-17 18:03:09 -06:00
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

@@ -35,6 +35,8 @@ class App {
virtual X_RESULT DispatchMessageSync(uint32_t message, uint32_t buffer_ptr,
uint32_t buffer_length) = 0;
virtual ~App() = default;
protected:
App(KernelState* kernel_state, uint32_t app_id);