Commit 292d33f4 authored by yurys@chromium.org's avatar yurys@chromium.org

Fix presubmit checks after r11223

TBR=mnaganov
Review URL: https://chromiumcodereview.appspot.com/9961008

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11226 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 2b6aa495
......@@ -3510,7 +3510,7 @@ int HeapSnapshotJSONSerializer::GetStringId(const char* s) {
// This function won't work correctly for MIN_INT but this is not
// a problem in case of heap snapshots serialization.
static int itoa(int value, Vector<char>& buffer, int buffer_pos) {
static int itoa(int value, const Vector<char>& buffer, int buffer_pos) {
if (value < 0) {
buffer[buffer_pos++] = '-';
value = -value;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment