Fixed Coverity reported issue.

CID 11830: Uninitialized pointer field (UNINIT_CTOR)
Non-static class member _geometry is not initialized in this constructor nor in any functions that it calls.
This commit is contained in:
Robert Osfield
2011-05-06 12:25:02 +00:00
parent c5c2080dd3
commit 24974462f6

View File

@@ -71,7 +71,8 @@ public:
EdgeCollapse():
_computeErrorMetricUsingLength(false) {}
_geometry(0),
_computeErrorMetricUsingLength(false) {}
~EdgeCollapse();