Fixed Coverity reported issue.

CID 11827: Uninitialized scalar field (UNINIT_CTOR)
Non-static class member _plane_mask is not initialized in this constructor nor in any functions that it calls.
This commit is contained in:
Robert Osfield
2011-05-06 12:26:13 +00:00
parent 21ca6a0475
commit b37a58e051

View File

@@ -89,6 +89,7 @@ namespace PolytopeIntersectorUtils
_index(0),
_limitOneIntersection( false ),
_dimensionMask( PolytopeIntersector::AllDims ),
_plane_mask(0x0),
_candidates(20) {}
void addIntersection(unsigned int index, const CandList_t& cands) {