]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Prepare int64 management
authorAnthony Geay <anthony.geay@edf.fr>
Thu, 31 Jan 2019 13:10:35 +0000 (14:10 +0100)
committerAnthony Geay <anthony.geay@edf.fr>
Thu, 31 Jan 2019 13:10:35 +0000 (14:10 +0100)
src/MEDCoupling/MCType.hxx

index 01e2dd1f963d2f6aefca18eea7eae8abda05eb1f..ad07645918089bbd3e20f03d102f2eb1bcf12aba 100644 (file)
 #ifndef __MEDCOUPLING_MCTYPE_HXX__
 #define __MEDCOUPLING_MCTYPE_HXX__
 
+#include <cstdint>
+
 namespace MEDCoupling
 {
-  typedef long Int64;
-  typedef int Int32;
-  typedef int mcIdType;
+  using Int64 = std::int64_t;
+  using Int32 = std::int32_t;
+  using mcIdType = std::int32_t;
 }
 
 #define DataArrayInt DataArrayInt32