Merge changes Ie072511b,I6424f90c

* changes:
  TreeInfo: Make ~ErrorHandler() virtual
  RenderThread: Make ~IFrameCallback() virtual
This commit is contained in:
Greg Kaiser
2018-08-24 22:23:02 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ public:
virtual void onError(const std::string& message) = 0;
protected:
~ErrorHandler() {}
virtual ~ErrorHandler() {}
};
class TreeObserver {

View File

@@ -59,7 +59,7 @@ public:
virtual void doFrame() = 0;
protected:
~IFrameCallback() {}
virtual ~IFrameCallback() {}
};
struct VsyncSource {