Skip to content

Commit 7090331

Browse files
committed
added check for _M_ARM
1 parent 23a8997 commit 7090331

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

bullet/BulletMultiThreaded/PlatformDefinitions.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ typedef union
4040
#ifndef __BT_SKIP_UINT64_H
4141
#if defined(_WIN64) && defined(_MSC_VER)
4242
typedef unsigned __int64 uint64_t;
43+
#elif defined(_M_ARM)
44+
typedef unsigned __int64 uint64_t;
4345
#else
4446
typedef unsigned long int uint64_t;
4547
#endif

0 commit comments

Comments
 (0)