Revert double thing

Some tests are failing now that didn't fail in contbuild. Revert until I can look at it.
Esse commit está contido em:
Paul Tarjan
2013-06-14 18:10:19 -07:00
commit de Sara Golemon
commit 1ca7c026d1
6 arquivos alterados com 724 adições e 4 exclusões
+1 -1
Ver Arquivo
@@ -824,7 +824,7 @@ int64_t StringData::toInt64(int base /* = 10 */) const {
double StringData::toDouble() const {
StringSlice s = slice();
if (s.len) return strtod(s.ptr, nullptr);
if (s.len) return zend_strtod(s.ptr, nullptr);
return 0;
}