From 1c19d4bbce27ceb0b5246aca624f576d5afa96b1 Mon Sep 17 00:00:00 2001
From: Lorenzo Moneta <Lorenzo.Moneta@cern.ch>
Date: Mon, 26 Sep 2016 23:53:22 +0200
Subject: [PATCH] Use uint64_t instead of unsigned long long

---
 math/mathcore/src/mixmax.h      | 8 ++++----
 math/mathcore/src/mixmax_oldS.h | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/math/mathcore/src/mixmax.h b/math/mathcore/src/mixmax.h
index c779daf4a85..4e8a20510fd 100755
--- a/math/mathcore/src/mixmax.h
+++ b/math/mathcore/src/mixmax.h
@@ -44,13 +44,13 @@ N=240, s=487013230256099140, m=2^51+1
 #define N _N
 #endif
 
-#ifndef __LP64__
+//#ifndef __LP64__
 typedef uint64_t myuint;
 //#warning but no problem,  'myuint' is 'uint64_t'
-#else
-typedef unsigned long long int myuint;
+//#else
+//typedef unsigned long long int myuint;
 //#warning but no problem,  'myuint' is 'unsigned long long int'
-#endif
+//#endif
 
 struct rng_state_st
 {
diff --git a/math/mathcore/src/mixmax_oldS.h b/math/mathcore/src/mixmax_oldS.h
index c34956643d0..f97ba7c3462 100644
--- a/math/mathcore/src/mixmax_oldS.h
+++ b/math/mathcore/src/mixmax_oldS.h
@@ -17,13 +17,13 @@
 #define N _N
 #endif
 
-#ifndef __LP64__
+//#ifndef __LP64__
 typedef uint64_t myuint;
 //#warning but no problem,  'myuint' is 'uint64_t'
-#else
-typedef unsigned long long int myuint;
+//#else
+//typedef unsigned long long int myuint;
 //#warning but no problem,  'myuint' is 'unsigned long long int'
-#endif
+//#endif
 
 struct rng_state_st
 {
-- 
GitLab