Revision: 9493
Author:   [email protected]
Date:     Fri Sep 30 03:15:06 2011
Log:      Port change to avoid using <limits> to the 3.4 branch.
Review URL: http://codereview.chromium.org/8082022
http://code.google.com/p/v8/source/detail?r=9493

Modified:
 /branches/3.4/src/strtod.cc
 /branches/3.4/src/version.cc

=======================================
--- /branches/3.4/src/strtod.cc Wed Jul  6 04:27:02 2011
+++ /branches/3.4/src/strtod.cc Fri Sep 30 03:15:06 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.4/src/version.cc        Thu Sep 29 02:17:12 2011
+++ /branches/3.4/src/version.cc        Fri Sep 30 03:15:06 2011
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     4
 #define BUILD_NUMBER      14
-#define PATCH_LEVEL       28
+#define PATCH_LEVEL       29
 // 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

Reply via email to