Reviewers: Erik Corry, Description: Port change to avoid using <limits> to the 3.5 branch.
Please review this at http://codereview.chromium.org/8084022/ SVN Base: http://v8.googlecode.com/svn/branches/3.5/ Affected files: M src/strtod.cc M src/version.cc Index: src/strtod.cc =================================================================== --- src/strtod.cc (revision 9491) +++ src/strtod.cc (working copy) @@ -26,14 +26,10 @@ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include <stdarg.h> -#include <limits> +#include <math.h> -#ifndef V8_INFINITY -#define V8_INFINITY std::numeric_limits<double>::infinity() -#endif - +#include "platform.h" #include "utils.h" - #include "strtod.h" #include "bignum.h" #include "cached-powers.h" Index: src/version.cc =================================================================== --- src/version.cc (revision 9491) +++ src/version.cc (working copy) @@ -35,7 +35,7 @@ #define MAJOR_VERSION 3 #define MINOR_VERSION 5 #define BUILD_NUMBER 10 -#define PATCH_LEVEL 14 +#define PATCH_LEVEL 15 // Use 1 for candidates and 0 otherwise. // (Boolean macro values are not supported by all preprocessors.) #define IS_CANDIDATE_VERSION 0 -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
