This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[v3] fixup warnings



insanely stupid typo, fixed

2001-02-05   Benjamin Kosnik  <bkoz@redhat.com>

	* include/bits/locale_facets.h (class moneypunct): Fix typos.

Index: include/bits/locale_facets.h
===================================================================
RCS file: /cvs/gcc/egcs/libstdc++-v3/include/bits/locale_facets.h,v
retrieving revision 1.11
diff -c -p -r1.11 locale_facets.h
*** locale_facets.h	2001/01/30 09:18:50	1.11
--- locale_facets.h	2001/02/06 07:20:21
*************** namespace std
*** 908,922 ****
        int 
        compare(const _CharT* __lo1, const _CharT* __hi1,
  	      const _CharT* __lo2, const _CharT* __hi2) const
!       { return do_compare(__lo1, __hi1, __lo2, __hi2); }
  
        string_type 
        transform(const _CharT* __lo, const _CharT* __hi) const
!       { return do_transform(__lo, __hi); }
  
        long 
        hash(const _CharT* __lo, const _CharT* __hi) const
!       { return do_hash(__lo, __hi); }
        
    protected:
        ~collate() { } // virtual
--- 908,922 ----
        int 
        compare(const _CharT* __lo1, const _CharT* __hi1,
  	      const _CharT* __lo2, const _CharT* __hi2) const
!       { return this->do_compare(__lo1, __hi1, __lo2, __hi2); }
  
        string_type 
        transform(const _CharT* __lo, const _CharT* __hi) const
!       { return this->do_transform(__lo, __hi); }
  
        long 
        hash(const _CharT* __lo, const _CharT* __hi) const
!       { return this->do_hash(__lo, __hi); }
        
    protected:
        ~collate() { } // virtual
*************** namespace std
*** 1278,1316 ****
  
        char_type
        decimal_point() const
!       { return decimal_point(); }
        
        char_type
        thousands_sep() const
!       { return thousands_sep(); }
        
        string 
        grouping() const
!       { return grouping(); }
  
        string_type  
        curr_symbol() const
!       { return do_curr_symbol(); }
  
        string_type  
        positive_sign() const
!       { return do_positive_sign(); }
  
        string_type  
        negative_sign() const
!       { return do_negative_sign(); }
  
        int          
        frac_digits() const
!       { return do_frac_digits(); }
  
        pattern      
        pos_format() const
!       { return do_pos_format(); }
  
        pattern      
        neg_format() const
!       { return do_neg_format(); }
  
      protected:
        virtual 
--- 1278,1316 ----
  
        char_type
        decimal_point() const
!       { return this->do_decimal_point(); }
        
        char_type
        thousands_sep() const
!       { return this->do_thousands_sep(); }
        
        string 
        grouping() const
!       { return this->do_grouping(); }
  
        string_type  
        curr_symbol() const
!       { return this->do_curr_symbol(); }
  
        string_type  
        positive_sign() const
!       { return this->do_positive_sign(); }
  
        string_type  
        negative_sign() const
!       { return this->do_negative_sign(); }
  
        int          
        frac_digits() const
!       { return this->do_frac_digits(); }
  
        pattern      
        pos_format() const
!       { return this->do_pos_format(); }
  
        pattern      
        neg_format() const
!       { return this->do_neg_format(); }
  
      protected:
        virtual 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]