Reviewers: Erik Corry,

Description:
Port change to avoid using <limits> to the 3.4 branch.

Please review this at http://codereview.chromium.org/8082022/

SVN Base: http://v8.googlecode.com/svn/branches/3.4/

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     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