Open monniaux opened 1 year ago
bench/parallel/rosace/thread1/types.h defines uint64_t. Unfortunately, the definition it gives is incompatible, on certain platforms and compilers, with the one in stdint.h, which may have ended being included before.
bench/parallel/rosace/thread1/types.h
uint64_t
stdint.h
Just use #include <stdint.h> instead.
#include <stdint.h>
Thanks for notification of this issue. Maybe you can fix it with a PR?
bench/parallel/rosace/thread1/types.h
definesuint64_t
. Unfortunately, the definition it gives is incompatible, on certain platforms and compilers, with the one instdint.h
, which may have ended being included before.Just use
#include <stdint.h>
instead.