Comment #1 on issue 49 by sgbeal: v8 does not use correct Integer types. http://code.google.com/p/v8/issues/detail?id=49
One solution for this is to include stdint.h instead of adding custom (and bogus) typedefs like: typedef long int32_t; (which i saw somewhere in the v8 code) That type of typedef has only brought me grief when porting to 64-bit platforms. Using these typedefs also violates the Google coding standards, which says to use integer types with fixed sizes when possible (and the above is not a guaranteed size). -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
