From 7dd9587d20ef8164f9603ccbebff6d8a017b9f45 Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Tue, 23 Sep 2014 09:07:23 -0700 Subject: [PATCH] remove warning about hidden virtual override --- libraries/shared/src/ListShape.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/shared/src/ListShape.h b/libraries/shared/src/ListShape.h index bd150c8246..67d125020f 100644 --- a/libraries/shared/src/ListShape.h +++ b/libraries/shared/src/ListShape.h @@ -56,7 +56,7 @@ public: void setShapes(QVector& shapes); // TODO: either implement this or remove ListShape altogether - bool findRayIntersection(const glm::vec3& rayStart, const glm::vec3& rayDirection, float& distance) const { return false; } + virtual bool findRayIntersection(RayIntersectionInfo& intersection) const { return false; } protected: void clear();