[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Openexr-devel] g++ --pedantic flag
From: |
Drew Hess |
Subject: |
Re: [Openexr-devel] g++ --pedantic flag |
Date: |
Wed, 20 Sep 2006 17:58:23 -0700 |
User-agent: |
Gnus/5.1006 (Gnus v5.10.6) XEmacs/21.5 (chestnut, linux) |
Florian Kainz <address@hidden> writes:
> Hi Kai-Uwe,
>
> I am not sure what the warning about the use of long long is supposed
> to mean. The function in question needs a 64-bit integer variable, and
> on some systems "long long" is the only 64-bit integer type available.
> I'll remove the offending comma in ImfEnvmap.h.
We should just #include <inttypes.h> and use int64_t. That should
work on all the platforms we support.
d