From 7781a855fc9818ef3748409af493d7f588009362 Mon Sep 17 00:00:00 2001 From: manga_osyo Date: Fri, 5 Oct 2012 16:54:38 +0900 Subject: [PATCH] =?UTF-8?q?=E4=BD=BF=E7=94=A8=E3=81=95=E3=82=8C=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=81=AA=E3=81=84=E5=9E=8B=E3=81=8C=E5=AE=9A=E7=BE=A9?= =?UTF-8?q?=E3=81=95=E3=82=8C=E3=81=A6=E3=81=8A=E3=82=8A=E3=80=81=E8=AD=A6?= =?UTF-8?q?=E5=91=8A=E3=81=8C=E5=87=BA=E3=81=A6=E3=81=84=E3=81=9F=E3=81=AE?= =?UTF-8?q?=E3=81=A7=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sprout/cstdlib/str_to_float.hpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/sprout/cstdlib/str_to_float.hpp b/sprout/cstdlib/str_to_float.hpp index 1e640860..29c91e7c 100644 --- a/sprout/cstdlib/str_to_float.hpp +++ b/sprout/cstdlib/str_to_float.hpp @@ -24,7 +24,6 @@ namespace sprout { FloatType p10 = FloatType(10) ) { - typedef typename std::iterator_traits::value_type char_type; return n ? sprout::detail::str_to_float_impl_scale( str, negative, @@ -49,7 +48,6 @@ namespace sprout { long n = 0 ) { - typedef typename std::iterator_traits::value_type char_type; return exponent >= std::numeric_limits::min_exponent && exponent <= std::numeric_limits::max_exponent ? sprout::detail::str_to_float_impl_scale( @@ -145,7 +143,6 @@ namespace sprout { long exponent = 0 ) { - typedef typename std::iterator_traits::value_type char_type; return num_digits == 0 ? FloatType() : sprout::detail::str_to_float_impl_exponent( str,