unused variables

This commit is contained in:
eap 2011-02-22 14:28:14 +00:00
parent b84e6567f0
commit e377bfeb20

View File

@ -3816,7 +3816,7 @@ bool _ViscousBuilder::addBoundaryElements()
map< TGeomID, TopoDS_Shape >::iterator e2f = map< TGeomID, TopoDS_Shape >::iterator e2f =
data._shrinkShape2Shape.find( getMeshDS()->ShapeToIndex( E )); data._shrinkShape2Shape.find( getMeshDS()->ShapeToIndex( E ));
TopoDS_Shape F; TopoDS_Shape F;
if ( isOnFace = ( e2f != data._shrinkShape2Shape.end() )) if (( isOnFace = ( e2f != data._shrinkShape2Shape.end() )))
{ {
F = e2f->second.Oriented( TopAbs_FORWARD ); F = e2f->second.Oriented( TopAbs_FORWARD );
reverse = ( helper.GetSubShapeOri( F, E ) == TopAbs_REVERSED ); reverse = ( helper.GetSubShapeOri( F, E ) == TopAbs_REVERSED );
@ -3849,8 +3849,6 @@ bool _ViscousBuilder::addBoundaryElements()
// Make faces // Make faces
const int dj1 = reverse ? 0 : 1; const int dj1 = reverse ? 0 : 1;
const int dj2 = reverse ? 1 : 0; const int dj2 = reverse ? 1 : 0;
vector<SMDS_MeshElement*> newFaces;
newFaces.reserve(( ledges.size() - 1 ) * (ledges[0]->_nodes.size() - 1 ));
for ( unsigned j = 1; j < ledges.size(); ++j ) for ( unsigned j = 1; j < ledges.size(); ++j )
{ {
vector< const SMDS_MeshNode*>& nn1 = ledges[j-dj1]->_nodes; vector< const SMDS_MeshNode*>& nn1 = ledges[j-dj1]->_nodes;