From a74cff369c36eeaa718af5178c265a1e76ce55ca Mon Sep 17 00:00:00 2001 From: Anthony Geay Date: Thu, 31 Jan 2019 14:10:35 +0100 Subject: [PATCH] Prepare int64 management --- src/MEDCoupling/MCType.hxx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/MEDCoupling/MCType.hxx b/src/MEDCoupling/MCType.hxx index 01e2dd1f9..ad0764591 100644 --- a/src/MEDCoupling/MCType.hxx +++ b/src/MEDCoupling/MCType.hxx @@ -21,11 +21,13 @@ #ifndef __MEDCOUPLING_MCTYPE_HXX__ #define __MEDCOUPLING_MCTYPE_HXX__ +#include + 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 -- 2.39.2