From: geay Date: Fri, 20 Jun 2014 13:41:51 +0000 (+0200) Subject: Warning hunting ! One T-bone steack for me Adrien :) X-Git-Tag: V7_5_0a1~2^2~28 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=9368787c2c3a32e98f5ddd9c6537e5906e226035;p=tools%2Fmedcoupling.git Warning hunting ! One T-bone steack for me Adrien :) --- diff --git a/src/MEDCoupling/MEDCouplingPointSet.cxx b/src/MEDCoupling/MEDCouplingPointSet.cxx index 27ce1b93b..5b221e9d4 100644 --- a/src/MEDCoupling/MEDCouplingPointSet.cxx +++ b/src/MEDCoupling/MEDCouplingPointSet.cxx @@ -1474,11 +1474,10 @@ void MEDCouplingPointSet::checkDeepEquivalWith(const MEDCouplingMesh *other, int int nbCells=getNumberOfCells(); if (nbCells != other->getNumberOfCells()) throw INTERP_KERNEL::Exception("checkDeepEquivalWith : some cells in other are not in this !"); - int maxId=-1; - int dan = da->getNumberOfTuples(); + int dan(da->getNumberOfTuples()); if (dan) { - MEDCouplingAutoRefCountObjectPtr da1 = DataArrayInt::New(), da2 = DataArrayInt::New(); + MEDCouplingAutoRefCountObjectPtr da1(DataArrayInt::New()),da2(DataArrayInt::New()); da1->alloc(dan/2,1); da2->alloc(dan/2,1); std::copy(da->getConstPointer(), da->getConstPointer()+dan/2, da1->getPointer()); std::copy(da->getConstPointer()+dan/2, da->getConstPointer()+dan, da2->getPointer());