Salome HOME
Compilation on Windows platform.
[modules/smesh.git] / src / SMESHUtils / SMESH_File.cxx
index ae5f9bb111868ced9102a16a34266df3b9bdf133..d75cd108adc87461108262cbca7bdc22a3cc4c99 100644 (file)
@@ -21,8 +21,8 @@
 // Created   : Wed Mar 10 11:23:25 2010
 // Author    : Edward AGAPOV (eap)
 //
+
 #include "SMESH_File.hxx"
-#include "utilities.h"
 
 #include <fcntl.h>
 #include <sys/stat.h>
@@ -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;