Merge pull request #1264 from bmzhao/fix-failing-linux-build
Fix Linux build errors due to missing virtual destructors
This commit is contained in:
@@ -92,6 +92,8 @@ class StackWalker {
|
|||||||
// populated.
|
// populated.
|
||||||
virtual bool ResolveStack(uint64_t* frame_host_pcs, StackFrame* frames,
|
virtual bool ResolveStack(uint64_t* frame_host_pcs, StackFrame* frames,
|
||||||
size_t frame_count) = 0;
|
size_t frame_count) = 0;
|
||||||
|
|
||||||
|
virtual ~StackWalker() = default;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace cpu
|
} // namespace cpu
|
||||||
|
|||||||
@@ -35,6 +35,8 @@ class App {
|
|||||||
virtual X_RESULT DispatchMessageSync(uint32_t message, uint32_t buffer_ptr,
|
virtual X_RESULT DispatchMessageSync(uint32_t message, uint32_t buffer_ptr,
|
||||||
uint32_t buffer_length) = 0;
|
uint32_t buffer_length) = 0;
|
||||||
|
|
||||||
|
virtual ~App() = default;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
App(KernelState* kernel_state, uint32_t app_id);
|
App(KernelState* kernel_state, uint32_t app_id);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user