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); |
Kasper Lund
2010/03/24 09:44:05
I would probably have preferred a solution where w
|
buffer[buffer_pos++] = *current; |
significant_digits++; |
} else { |