From 7293bb34ac5cc8b2f80886a3b9dd44d32e4e4406 Mon Sep 17 00:00:00 2001 From: Artem Zhidkov Date: Sun, 10 May 2020 23:40:51 +0300 Subject: [PATCH] Fix too long line error (meet coding style). --- src/Selector/Selector_Modify.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } -- 2.39.2