Virtual method warning removal.

Warning was "Delete called on HifiLeapListener that has virtual functions but non-virtual destructor"
This commit is contained in:
Eric Johnston 2013-07-03 11:46:53 -07:00
parent acef2bc669
commit e8ee041f20

View file

@ -17,6 +17,10 @@ HifiLeapListener* LeapManager::_listener = NULL;
class HifiLeapListener : public Leap::Listener {
public:
HifiLeapListener() {
}
virtual ~HifiLeapListener() {
}
Leap::Frame lastFrame;
std::vector<glm::vec3> fingerTips;
std::vector<glm::vec3> fingerRoots;