Fix #141 (#142)

diff --git a/double-conversion/strtod.cc b/double-conversion/strtod.cc
index 3da7a42..441be76 100644
--- a/double-conversion/strtod.cc
+++ b/double-conversion/strtod.cc
@@ -206,8 +206,6 @@
   // 80 bits wide (as is the case on Linux) then double-rounding occurs and the
   // result is not accurate.
   // We know that Windows32 uses 64 bits and is therefore accurate.
-  // Note that the ARM simulator is compiled for 32bits. It therefore exhibits
-  // the same problem.
   return false;
 #else
   if (trimmed.length() <= kMaxExactDoubleIntegerDecimalDigits) {