Salome HOME
Compilation on Windows platform.
[modules/smesh.git] / src / SMESHUtils / SMESH_File.cxx
index c31c2e8bc1e90cc2e9e5a26240907a4b6a826b97..d75cd108adc87461108262cbca7bdc22a3cc4c99 100644 (file)
@@ -171,7 +171,7 @@ long SMESH_File::size()
   if ( _size >= 0 ) return _size; // size of an open file
 
   boost::system::error_code err;
-  uintmax_t size = boofs::file_size( _name, err );
+  boost::uintmax_t size = boofs::file_size( _name, err );
   _error = err.message();
 
   return err ? -1 : (long) size;