From: mpv Date: Mon, 15 Jan 2018 13:43:05 +0000 (+0300) Subject: Fixed the coding standards problem X-Git-Tag: V_3.0.0RC1~35 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=36c012079cecd007cd09c9192f06fcba9d8982f6;p=modules%2Fshaper.git Fixed the coding standards problem --- diff --git a/src/Model/Model_AttributeSelection.cpp b/src/Model/Model_AttributeSelection.cpp index 7572dab51..ad18492ce 100644 --- a/src/Model/Model_AttributeSelection.cpp +++ b/src/Model/Model_AttributeSelection.cpp @@ -907,7 +907,8 @@ void Model_AttributeSelection::selectSubShape( std::list >::const_iterator aRIter = aFResults.begin(); for (; aRIter != aFResults.cend(); aRIter++) { // iterate sub-bodies of compsolid - ResultCompSolidPtr aComp = std::dynamic_pointer_cast(*aRIter); + ResultCompSolidPtr aComp = + std::dynamic_pointer_cast(*aRIter); if (aComp.get() && aComp->numberOfSubs() > 0) { int aNumSub = aComp->numberOfSubs(); for(int a = 0; a < aNumSub; a++) {