Reviewers: Kasper Lund, Description: Fixing build in debug mode.
Please review this at http://codereview.chromium.org/1225003 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/conversions.cc Index: src/conversions.cc =================================================================== --- src/conversions.cc (revision 4241) +++ src/conversions.cc (working copy) @@ -295,7 +295,6 @@ || (*current >= 'a' && *current <= 'f') || (*current >= 'A' && *current <= 'F')) { if (significant_digits <= max_significant_digits) { - ASSERT(buffer_pos < buffer_size); buffer[buffer_pos++] = *current; significant_digits++; } else { -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev To unsubscribe from this group, send email to v8-dev+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.
