[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [gnugo-devel] new cache implementation
From: |
Paul Pogonyshev |
Subject: |
Re: [gnugo-devel] new cache implementation |
Date: |
Mon, 7 Jul 2003 17:34:04 +0000 |
User-agent: |
KMail/1.5.9 |
Manner Wolfgang wrote:
> in stdint.h
> you just have:
>
> # if __WORDSIZE == 64
> typedef long int int64_t;
> # else
> __extension__
> typedef long long int int64_t;
> # endif
i don't think this would be a good solution as long as we care
about windows compilers. vc++ doesn't know about `long long'.
it however, has some own types for 64-bit integers, so we could
add another clause as
...
#elif defined(_MSVC)
typedef __int_64 int64_t;
#else
...
those who work on windows can fix spellings. i don't remember
how exactly that should be written.
Paul