Salome HOME
merge from origin gni/adaptation
[modules/smesh.git] / src / Driver / Driver_Mesh.cxx
index edf91376e651baa30aa9a025dff9e6457ead1fdf..9552c7469c4a89613ab6ced488dcdb259d1dce4d 100644 (file)
@@ -123,7 +123,7 @@ std::string Driver_Mesh::fixUTF8(const std::string & str )
 
     // how many bytes follow?
     int len = 0;
-    if      (s[i] >> 5 == 0b110  ) len = 1;
+    if      (s[i] >> 5 == 0b110  ) len = 1; // WARNING: binary constants included in C++14
     else if (s[i] >> 4 == 0b1110 ) len = 2;
     else if (s[i] >> 3 == 0b11110) len = 3;
     else