]> gcc.gnu.org Git - gcc.git/commitdiff
locale_facets.tcc (money_get<>::_M_extract, [...]): ...
authorPaolo Carlini <pcarlini@suse.de>
Mon, 1 Mar 2004 17:29:27 +0000 (17:29 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Mon, 1 Mar 2004 17:29:27 +0000 (17:29 +0000)
2004-03-01  Paolo Carlini  <pcarlini@suse.de>

* include/bits/locale_facets.tcc (money_get<>::_M_extract,
money_get<>::do_get(string_type&)): ... and two more.

From-SVN: r78708

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

index 1a7828c3e965c40d076ed6b1874f73ff1e19609c..d3e4fc90ea8508e1b138ffbca6b65bba7c9015ed 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-01  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/bits/locale_facets.tcc (money_get<>::_M_extract,
+       money_get<>::do_get(string_type&)): ... and two more.
+
 2004-03-01  Paolo Carlini  <pcarlini@suse.de>
 
        * include/bits/locale_facets.tcc (money_get<>::_M_extract):
index 399b5adc2852de69b9006c31c433c81fa4aa53c5..712bfcc4e554167bd0aff0b284d79205841f846f 100644 (file)
@@ -1339,7 +1339,7 @@ namespace std
            if (__res.size() > 1)
              {
                const size_type __first = __res.find_first_not_of('0');
-               const bool __only_zeros = __first == string_type::npos;
+               const bool __only_zeros = __first == string::npos;
                if (__first)
                  __res.erase(0, __only_zeros ? __res.size() - 1 : __first);
              }
@@ -1405,7 +1405,7 @@ namespace std
     do_get(iter_type __beg, iter_type __end, bool __intl, ios_base& __io,
           ios_base::iostate& __err, string_type& __units) const
     {
-      typedef typename string_type::size_type             size_type;
+      typedef typename string::size_type                  size_type;
 
       const locale& __loc = __io._M_getloc();
       const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc);
This page took 0.064481 seconds and 5 git commands to generate.