removed harmless warnings
This commit is contained in:
parent
72ce36f55c
commit
1407af2537
|
@ -477,7 +477,7 @@ namespace vcg {
|
|||
for(i=0;i<3;++i)
|
||||
{
|
||||
size_t oldIndex = (*fi).V(i) - vbase;
|
||||
assert(oldIndex >=0 && oldIndex < newVertIndex.size());
|
||||
assert(vbase <= (*fi).V(i) && oldIndex < newVertIndex.size());
|
||||
(*fi).V(i) = vbase+newVertIndex[oldIndex];
|
||||
}
|
||||
|
||||
|
@ -529,7 +529,7 @@ namespace vcg {
|
|||
if ((*vi).cVFp()!=0)
|
||||
{
|
||||
size_t oldIndex = (*vi).cVFp() - fbase;
|
||||
assert(oldIndex >=0 && oldIndex < newFaceIndex.size());
|
||||
assert(fbase <= (*vi).cVFp() && oldIndex < newFaceIndex.size());
|
||||
(*vi).VFp() = fbase+newFaceIndex[oldIndex];
|
||||
}
|
||||
}
|
||||
|
@ -548,7 +548,7 @@ namespace vcg {
|
|||
if ((*fi).cVFp(i)!=0)
|
||||
{
|
||||
size_t oldIndex = (*fi).VFp(i) - fbase;
|
||||
assert(oldIndex >=0 && oldIndex < newFaceIndex.size());
|
||||
assert(fbase <= (*fi).VFp(i) && oldIndex < newFaceIndex.size());
|
||||
(*fi).VFp(i) = fbase+newFaceIndex[oldIndex];
|
||||
}
|
||||
if(HasFFAdjacency(m))
|
||||
|
@ -556,7 +556,7 @@ namespace vcg {
|
|||
if ((*fi).cFFp(i)!=0)
|
||||
{
|
||||
size_t oldIndex = (*fi).FFp(i) - fbase;
|
||||
assert(oldIndex >=0 && oldIndex < newFaceIndex.size());
|
||||
assert(fbase <= (*fi).FFp(i) && oldIndex < newFaceIndex.size());
|
||||
(*fi).FFp(i) = fbase+newFaceIndex[oldIndex];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -334,7 +334,7 @@ private:
|
|||
if(m.vert.size()==0 || m.vn==0) return 0;
|
||||
|
||||
std::map<VertexPointer, VertexPointer> mp;
|
||||
int i,j;
|
||||
size_t i,j;
|
||||
VertexIterator vi;
|
||||
int deleted=0;
|
||||
int k=0;
|
||||
|
@ -489,7 +489,7 @@ private:
|
|||
ToDelVec.push_back(&*fi);
|
||||
}
|
||||
|
||||
for(int i=0;i<ToDelVec.size();++i)
|
||||
for(size_t i=0;i<ToDelVec.size();++i)
|
||||
{
|
||||
if(!ToDelVec[i]->IsD())
|
||||
{
|
||||
|
|
|
@ -239,7 +239,6 @@ public:
|
|||
// this function is called by the specialized Reorder function, that is called whenever someone call the allocator::CompactVertVector
|
||||
void ReorderFace(std::vector<size_t> &newFaceIndex )
|
||||
{
|
||||
size_t pos=0;
|
||||
size_t i=0;
|
||||
if (ColorEnabled) assert( CV.size() == newFaceIndex.size() );
|
||||
if (MarkEnabled) assert( MV.size() == newFaceIndex.size() );
|
||||
|
|
|
@ -171,7 +171,6 @@ public:
|
|||
// this function is called by the specialized Reorder function, that is called whenever someone call the allocator::CompactVertVector
|
||||
void ReorderVert(std::vector<size_t> &newVertIndex )
|
||||
{
|
||||
size_t pos=0;
|
||||
size_t i=0;
|
||||
if (ColorEnabled) assert( CV.size() == newVertIndex.size() );
|
||||
if (MarkEnabled) assert( MV.size() == newVertIndex.size() );
|
||||
|
|
|
@ -137,7 +137,7 @@ protected:
|
|||
inline NodePointer &Son(int /*sonIndex*/)
|
||||
{
|
||||
assert(false);
|
||||
NodePointer p = NULL;
|
||||
static NodePointer p = NULL;
|
||||
return p;
|
||||
}
|
||||
|
||||
|
|
|
@ -222,7 +222,7 @@ namespace vcg
|
|||
octree_for_plane.GetKClosest
|
||||
(ppdf, dom, kk, iPlane->center, max_distance, nearest_planes, distances, nearest_points, true, false);
|
||||
|
||||
for (int n=0; n<k; n++)
|
||||
for (unsigned int n=0; n<k; n++)
|
||||
if (iPlane->index<nearest_planes[n]->index)
|
||||
riemannian_graph[iPlane->index].push_back( RiemannianEdge( nearest_planes[n], 1.0f - fabs(iPlane->normal * nearest_planes[n]->normal)) );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue