Attempt to supress warning described in #6645 (implicit conversion shortens 64-bit value into a 32-bit value)

[SVN r77221]
This commit is contained in:
Antony Polukhin
2012-03-04 17:59:03 +00:00
parent 83639bd9ae
commit 7e7f494dd1

View File

@@ -953,7 +953,7 @@ namespace boost
CharT const capital_e = lcast_char_constants<CharT>::capital_e; CharT const capital_e = lcast_char_constants<CharT>::capital_e;
CharT const lowercase_e = lcast_char_constants<CharT>::lowercase_e; CharT const lowercase_e = lcast_char_constants<CharT>::lowercase_e;
value = 0.0; value = static_cast<T>(0);
if (parse_inf_nan(begin, end, value)) return true; if (parse_inf_nan(begin, end, value)) return true;