Open GoogleCodeExporter opened 9 years ago
I think the above message was confusing, basically when compiling with
FIXMATH_NO_64BIT,
I get 2 errors on this line (and all the similar ones):
static __inline __int64_t int64_const(int32_t hi, uint32_t lo) { return
(__int64_t){ hi, lo }; }
int64.h(40): error: #119: cast to type "__int64_t" is not allowed
int64.h(40): error: #29: expected an expression
any ideas how to get his to work?
Thanks!
Original comment by AGorge2...@gmail.com
on 8 Sep 2013 at 12:19
Yeah, the problem is that you're using a compiler which doesn't support the
same features as gcc or that I didn't realize that this way of initializing a
struct was not standard C. To fix that problem just change it to:
static __inline __int64_t int64_const(int32_t hi, uint32_t lo) { __int64_t r;
r.hi = hi; r.lo = lo; return r; }
Original comment by Flatmush@googlemail.com
on 8 Sep 2013 at 1:06
Original issue reported on code.google.com by
AGorge2...@gmail.com
on 7 Sep 2013 at 11:33