Remove Clang warnings

This commit is contained in:
Alexander Bock
2018-03-08 20:18:18 +01:00
parent 06ebd75b21
commit 7ccb42545c
12 changed files with 31 additions and 45 deletions

View File

@@ -62,7 +62,7 @@ public:
// Stores the selected node, the cursor ID as well as the surface coordinates the
// cursor touched
struct SelectedBody {
int id;
long id;
SceneGraphNode* node;
glm::dvec3 coordinates;
};

View File

@@ -107,7 +107,7 @@ class TuioEar : public TUIO::TuioListener {
/**
* A list that tracks all of the cursor ID's that got removed since last frame
*/
std::vector<int> _removeList;
std::vector<long> _removeList;
};
#endif // __OPENSPACE_MODULE_TOUCH___TUIO_EAR___H__