From: eap Date: Thu, 16 May 2013 16:04:50 +0000 (+0000) Subject: indentation X-Git-Tag: V7_3_0a1~483 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=77bf33663f94d6669ed79afe6dc33c2a1b335d86;p=modules%2Fsmesh.git indentation --- diff --git a/src/SMDS/SMDS_LinearEdge.cxx b/src/SMDS/SMDS_LinearEdge.cxx index 8884bac0d..b172560d0 100644 --- a/src/SMDS/SMDS_LinearEdge.cxx +++ b/src/SMDS/SMDS_LinearEdge.cxx @@ -99,13 +99,11 @@ SMDS_ElemIteratorPtr SMDS_LinearEdge::elementsIterator(SMDSAbs_ElementType type) case SMDSAbs_Node: return SMDS_ElemIteratorPtr(new SMDS_LinearEdge_MyNodeIterator(myNodes)); default: - return SMDS_ElemIteratorPtr( - new SMDS_IteratorOfElements( - this, - type, - SMDS_ElemIteratorPtr( - new SMDS_LinearEdge_MyNodeIterator( - myNodes)))); + return SMDS_ElemIteratorPtr + (new SMDS_IteratorOfElements(this, + type, + SMDS_ElemIteratorPtr + (new SMDS_LinearEdge_MyNodeIterator(myNodes)))); } }