Open GoogleCodeExporter opened 8 years ago
I had the same in Visual Studio 2010 Update 1. However, it was easily fixed
replacing all the occurrences of "ssize_t" by "intptr_t".
Original comment by felipe.a...@gmail.com
on 8 Feb 2013 at 1:22
Obs.: I was using the source code v1.0.1
Original comment by felipe.a...@gmail.com
on 8 Feb 2013 at 1:24
intptr_t and ssize_t do not sound like the same kind of type.
That said, I think I like the first solution.
Original comment by josh.mac...@gmail.com
on 9 Feb 2013 at 7:07
Original comment by josh.mac...@gmail.com
on 9 Feb 2013 at 7:21
#if defined(_MSC_VER)
#include <BaseTsd.h>
typedef SSIZE_T ssize_t;
#endif
I used also this approach but when compiling in VS 2013 I get btree.h(1406):
error C2118: negative subscript
Original comment by radu.cri...@gmail.com
on 21 May 2014 at 8:42
Original issue reported on code.google.com by
christop...@gmail.com
on 4 Feb 2013 at 1:33