]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
locale_facets.h (__convert_to_v): Add empty exception-specification.
authorChris Jefferson <chris@bubblescope.net>
Wed, 17 Feb 2010 21:09:10 +0000 (21:09 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Wed, 17 Feb 2010 21:09:10 +0000 (21:09 +0000)
2010-02-17  Chris Jefferson  <chris@bubblescope.net>

* include/bits/locale_facets.h (__convert_to_v): Add empty
exception-specification.

From-SVN: r156837

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/locale_facets.h

index 5eff61ac9638d60067fb2226ddca6e4a1ab7801d..7bed51831251f6356db343f8d5b443009c47a746 100644 (file)
@@ -1,3 +1,8 @@
+2010-02-17  Chris Jefferson  <chris@bubblescope.net>
+
+       * include/bits/locale_facets.h (__convert_to_v): Add empty
+       exception-specification.
+
 2010-02-17  Paolo Carlini  <paolo.carlini@oracle.com>
 
        * include/std/limits: Implement resolution of DR 559 (CD1) in
index b3f9001a52d5cf8f81b56a40e03c49896f10b5af..b67c6a02d6ecd859fa3c3e54c47e1d6041cdd8cb 100644 (file)
@@ -58,13 +58,13 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
 # define  _GLIBCXX_NUM_FACETS 14
 #endif
 
-  // Convert string to numeric value of type _Tv and store results.
+  // Convert string to numeric value of type _Tp and store results.
   // NB: This is specialized for all required types, there is no
   // generic definition.
-  template<typename _Tv>
+  template<typename _Tp>
     void
-    __convert_to_v(const char* __in, _Tv& __out, ios_base::iostate& __err,
-                  const __c_locale& __cloc);
+    __convert_to_v(const char*, _Tp&, ios_base::iostate&,
+                  const __c_locale&) throw();
 
   // Explicit specializations for required types.
   template<>