Salome HOME
#18963 Minimize compiler warnings
[modules/gui.git] / tools / PyInterp / src / PyInterp_Interp.cxx
index 38369cc3840227d44a665e41f93e9054b10a9ac9..38f5223106460ea895f8dbe703cedb60bee8ce8b 100644 (file)
@@ -401,7 +401,7 @@ std::string
 __join(const std::vector<std::string>& v, int begin=0, int end=-1)
 {
   if (end == -1)
-    end = v.size();
+    end = (int)v.size(); //!< TODO: conversion from size_t to int
   std::stringstream ss;
   for (int i = begin; i < end; ++i) {
     if (i != begin)