Fixed warning in Tesselation w.r.t unhandled cases in switch statement

This commit is contained in:
Robert Osfield
2004-02-05 10:15:38 +00:00
parent fa1a9f4060
commit e4dac2e6f6

View File

@@ -344,6 +344,9 @@ void Tesselator::retesselatePolygons(osg::Geometry& geom)
case osg::Array::Vec3ArrayType:
cols3=dynamic_cast<osg::Vec3Array *> (colours);
break;
default:
// not handled cases
break;
}
}