Revision: 9492 Author: [email protected] Date: Fri Sep 30 03:14:20 2011 Log: Port change to avoid using <limits> to the 3.5 branch. Review URL: http://codereview.chromium.org/8084022 http://code.google.com/p/v8/source/detail?r=9492
Modified: /branches/3.5/src/strtod.cc /branches/3.5/src/version.cc ======================================= --- /branches/3.5/src/strtod.cc Wed Jul 6 04:27:02 2011 +++ /branches/3.5/src/strtod.cc Fri Sep 30 03:14:20 2011 @@ -26,14 +26,10 @@ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include <stdarg.h> -#include <limits> - -#ifndef V8_INFINITY -#define V8_INFINITY std::numeric_limits<double>::infinity() -#endif - +#include <math.h> + +#include "platform.h" #include "utils.h" - #include "strtod.h" #include "bignum.h" #include "cached-powers.h" ======================================= --- /branches/3.5/src/version.cc Tue Sep 27 00:55:59 2011 +++ /branches/3.5/src/version.cc Fri Sep 30 03:14:20 2011 @@ -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
