Browse Source

Attepting to fix typing issue on Mac.

pull/4/head
David Dawes 6 years ago
parent
commit
4532d437a4
  1. 6
      src/pow/tromp/equi_miner.h

6
src/pow/tromp/equi_miner.h

@ -25,7 +25,13 @@
#include <assert.h>
typedef uint16_t u16;
#ifdef _WIN32
typedef unsigned long long u64;
#elif __linux__
typedef uint64_t u64;
#else
typedef unsigned long u64;
#endif
#ifdef EQUIHASH_TROMP_ATOMIC
#include <atomic>

Loading…
Cancel
Save