From: Artem Zhidkov Date: Sun, 10 May 2020 20:40:51 +0000 (+0300) Subject: Fix too long line error (meet coding style). X-Git-Tag: V9_5_0b1~19 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=7293bb34ac5cc8b2f80886a3b9dd44d32e4e4406;p=modules%2Fshaper.git Fix too long line error (meet coding style). --- diff --git a/src/Selector/Selector_Modify.cpp b/src/Selector/Selector_Modify.cpp index eb0817d83..987915eeb 100644 --- a/src/Selector/Selector_Modify.cpp +++ b/src/Selector/Selector_Modify.cpp @@ -259,7 +259,8 @@ TDF_Label Selector_Modify::restoreByName(std::string theName, aSubStr.find(weakNameID()) : aFoundOldWeak; if (aFoundOldWeak == 0 || aFoundNewWeak == 0) { // weak name identifier - std::string aWeakIndex = aSubStr.substr(aFoundOldWeak + oldWeakNameID().size()); myWeakIndex = atoi(aWeakIndex.c_str()); + std::string aWeakIndex = aSubStr.substr(aFoundOldWeak + oldWeakNameID().size()); + myWeakIndex = atoi(aWeakIndex.c_str()); myRecomputeWeakIndex = aFoundOldWeak == 0; continue; }