Revision: 13349
Author:   [email protected]
Date:     Wed Jan  9 09:13:11 2013
Log:      Merged r13348 into trunk branch.

Fix objectprint=on build.

[email protected]
BUG=

Review URL: https://codereview.chromium.org/11818031
http://code.google.com/p/v8/source/detail?r=13349

Modified:
 /trunk/src/objects-printer.cc
 /trunk/src/version.cc

=======================================
--- /trunk/src/objects-printer.cc       Wed Jan  9 08:32:23 2013
+++ /trunk/src/objects-printer.cc       Wed Jan  9 09:13:11 2013
@@ -703,7 +703,7 @@
   static char* buffer = NULL;
   if (buffer != NULL) free(buffer);
   buffer = new char[length()+1];
-  WriteToFlat(this, buffer, 0, length());
+  WriteToFlat(this, reinterpret_cast<uint8_t*>(buffer), 0, length());
   buffer[length()] = 0;
   return buffer;
 }
=======================================
--- /trunk/src/version.cc       Wed Jan  9 08:32:23 2013
+++ /trunk/src/version.cc       Wed Jan  9 09:13:11 2013
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     16
 #define BUILD_NUMBER      3
-#define PATCH_LEVEL       0
+#define PATCH_LEVEL       1
 // 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