Commit 38c31154 authored by Luca Boccassi's avatar Luca Boccassi

Problem: build broken with older compilers

Solution: define __STDC_LIMIT_MACROS before including stdint.h so that SIZE_MAX
is defined
parent 021c6a70
......@@ -69,6 +69,8 @@ typedef unsigned __int64 uint64_t;
#else
// To define SIZE_MAX with older compilers
#define __STDC_LIMIT_MACROS
#include <stdint.h>
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment