You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* triangles are four-byte-aligned and that the `unsigned long' type is */
/* long enough to hold a pointer are two of the few kludges in this program.*/
On Windows, unsigned long is 32 bits even on 64 bit platforms. It could either be changed to unsigned long long, or uintptr_t (included in <stdint.h> from C-99).
The text was updated successfully, but these errors were encountered:
I tried to build on Windows, but hit issues with this:
tempestremap/src/triangle.cpp
Lines 834 to 835 in 31e51ff
On Windows,
unsigned long
is 32 bits even on 64 bit platforms. It could either be changed tounsigned long long
, oruintptr_t
(included in<stdint.h>
from C-99).The text was updated successfully, but these errors were encountered: