Salome HOME
[Code coverage BuildPlugin]: Unit tests to check error messages
[modules/shaper.git] / src / ParametersPlugin / ParametersPlugin_EvalListener.cpp
index cc299083317be073bda56b3ab5da4bda2d24feca..cd5328a3432b966f7e527e7d86af14264044d92a 100644 (file)
@@ -48,7 +48,7 @@
 //------------------------------------------------------------------------------
 // Tools
 
-std::string toStdString(double theValue)
+static std::string toStdString(double theValue)
 {
   std::ostringstream sstream;
   sstream << theValue;
@@ -59,7 +59,7 @@ std::string toStdString(double theValue)
   return sstream.str() + aPnt;
 }
 
-std::set<std::string> toSet(const std::list<std::string>& theContainer)
+static std::set<std::string> toSet(const std::list<std::string>& theContainer)
 {
   return std::set<std::string>(theContainer.begin(), theContainer.end());
 }