mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 19:04:32 +02:00
Virtual method warning removal.
Warning was "Delete called on HifiLeapListener that has virtual functions but non-virtual destructor"
This commit is contained in:
parent
acef2bc669
commit
e8ee041f20
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue