From 58bcb98dd6c0ccfe9e525e76242c6eb4ecf986aa Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Tue, 23 Sep 2014 10:04:36 -0700 Subject: [PATCH] remove virtual for ListShape::findRayIntersection() --- 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 67d125020f..6352ef3f07 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 - virtual bool findRayIntersection(RayIntersectionInfo& intersection) const { return false; } + bool findRayIntersection(RayIntersectionInfo& intersection) const { return false; } protected: void clear();