fix(runtime/int64): compilation issue on Linux
This commit is contained in:
parent
b6decd70f0
commit
84de479a4c
1 changed files with 5 additions and 4 deletions
|
|
@ -4,9 +4,10 @@ Released under Apache 2.0 license as described in the file LICENSE.
|
|||
|
||||
Author: Leonardo de Moura
|
||||
*/
|
||||
#include <stdint.h>
|
||||
namespace lean {
|
||||
typedef long long int64;
|
||||
typedef unsigned long long uint64;
|
||||
static_assert(sizeof(int64 ) == 8, "unexpected int64 size");
|
||||
static_assert(sizeof(uint64 ) == 8, "unexpected uint64 size");
|
||||
typedef int64_t int64;
|
||||
typedef uint64_t uint64;
|
||||
static_assert(sizeof(int64) == 8, "unexpected int64 size");
|
||||
static_assert(sizeof(uint64) == 8, "unexpected uint64 size");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue