]> SALOME platform Git repositories - modules/kernel.git/blobdiff - src/SALOMEDSImpl/SALOMEDSImpl_ScalarVariable.cxx
Salome HOME
Updated copyright comment
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_ScalarVariable.cxx
index b070c19c0a68e058785c2e022bd42cca9986f7ec..d2bda84b79f0197912fb77822e7bf1ded90557a8 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -38,7 +38,8 @@
 SALOMEDSImpl_ScalarVariable::
 SALOMEDSImpl_ScalarVariable(SALOMEDSImpl_GenericVariable::VariableTypes type,
                             const std::string& theName):
-  SALOMEDSImpl_GenericVariable(type,theName)
+  SALOMEDSImpl_GenericVariable(type,theName),
+  myValue( 1e+100 )
 {}
 
 //============================================================================
@@ -197,7 +198,7 @@ void SALOMEDSImpl_ScalarVariable::Load(const std::string& theStrValue)
   }
   else {
 #ifdef OLDSTUDY_COMPATIBILITY
-    int dotpos = strCopy.find(',');
+    size_t dotpos = strCopy.find(',');
     if (dotpos != std::string::npos)
       strCopy.replace(dotpos, 1, ".");
 #endif // OLDSTUDY_COMPATIBILITY