Salome HOME
Get rid of compilation warnings. Part II. MSVC warnings.
[modules/shaper.git] / src / Model / Model_AttributeTables.cpp
index f984c3487d8ca037f0e122885ee3857e3bd75a70..5bd66451571119d87a2f32e2e44eb7a953d6e560 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2020  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 //
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or
-// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #include "Model_AttributeTables.h"
@@ -111,7 +110,8 @@ void Model_AttributeTables::setSize(const int theRows, const int theColumns, con
       for(int aTable = 0; aTable < theTables; aTable++) {
         for(int aColumn = 0; aColumn < theColumns; aColumn++) {
           for(int aRow = 0; aRow < theRows; aRow++) {
-            int anOldIndex, anIndex = aTable * theRows * theColumns + aRow * theColumns + aColumn;
+            int anOldIndex = 0;
+            int anIndex = aTable * theRows * theColumns + aRow * theColumns + aColumn;
             bool aRestore = aTable < myTables && aColumn < myCols && aRow < myRows;
             if (aRestore)
               anOldIndex = aTable * myRows * myCols + aRow * myCols + aColumn;