remove virtual for ListShape::findRayIntersection()

This commit is contained in:
Andrew Meadows 2014-09-23 10:04:36 -07:00
parent 7dd9587d20
commit 58bcb98dd6

View file

@ -56,7 +56,7 @@ public:
void setShapes(QVector<ListShapeEntry>& 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();