locale_facets.h (class moneypunct): Fix typos.
2001-02-05 Benjamin Kosnik <bkoz@redhat.com> * include/bits/locale_facets.h (class moneypunct): Fix typos. From-SVN: r39483
This commit is contained in:
parent
f8db4f2006
commit
0a1cceea5c
@ -1,3 +1,7 @@
|
|||||||
|
2001-02-05 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
|
|
||||||
|
* include/bits/locale_facets.h (class moneypunct): Fix typos.
|
||||||
|
|
||||||
2001-02-05 Benjamin Kosnik <bkoz@redhat.com>
|
2001-02-05 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
|
|
||||||
* acinclude.m4 (GLIBCPP_CHECK_MATH_DECL_1): New macro.
|
* acinclude.m4 (GLIBCPP_CHECK_MATH_DECL_1): New macro.
|
||||||
|
@ -908,15 +908,15 @@ namespace std
|
|||||||
int
|
int
|
||||||
compare(const _CharT* __lo1, const _CharT* __hi1,
|
compare(const _CharT* __lo1, const _CharT* __hi1,
|
||||||
const _CharT* __lo2, const _CharT* __hi2) const
|
const _CharT* __lo2, const _CharT* __hi2) const
|
||||||
{ return do_compare(__lo1, __hi1, __lo2, __hi2); }
|
{ return this->do_compare(__lo1, __hi1, __lo2, __hi2); }
|
||||||
|
|
||||||
string_type
|
string_type
|
||||||
transform(const _CharT* __lo, const _CharT* __hi) const
|
transform(const _CharT* __lo, const _CharT* __hi) const
|
||||||
{ return do_transform(__lo, __hi); }
|
{ return this->do_transform(__lo, __hi); }
|
||||||
|
|
||||||
long
|
long
|
||||||
hash(const _CharT* __lo, const _CharT* __hi) const
|
hash(const _CharT* __lo, const _CharT* __hi) const
|
||||||
{ return do_hash(__lo, __hi); }
|
{ return this->do_hash(__lo, __hi); }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
~collate() { } // virtual
|
~collate() { } // virtual
|
||||||
@ -1278,39 +1278,39 @@ namespace std
|
|||||||
|
|
||||||
char_type
|
char_type
|
||||||
decimal_point() const
|
decimal_point() const
|
||||||
{ return decimal_point(); }
|
{ return this->do_decimal_point(); }
|
||||||
|
|
||||||
char_type
|
char_type
|
||||||
thousands_sep() const
|
thousands_sep() const
|
||||||
{ return thousands_sep(); }
|
{ return this->do_thousands_sep(); }
|
||||||
|
|
||||||
string
|
string
|
||||||
grouping() const
|
grouping() const
|
||||||
{ return grouping(); }
|
{ return this->do_grouping(); }
|
||||||
|
|
||||||
string_type
|
string_type
|
||||||
curr_symbol() const
|
curr_symbol() const
|
||||||
{ return do_curr_symbol(); }
|
{ return this->do_curr_symbol(); }
|
||||||
|
|
||||||
string_type
|
string_type
|
||||||
positive_sign() const
|
positive_sign() const
|
||||||
{ return do_positive_sign(); }
|
{ return this->do_positive_sign(); }
|
||||||
|
|
||||||
string_type
|
string_type
|
||||||
negative_sign() const
|
negative_sign() const
|
||||||
{ return do_negative_sign(); }
|
{ return this->do_negative_sign(); }
|
||||||
|
|
||||||
int
|
int
|
||||||
frac_digits() const
|
frac_digits() const
|
||||||
{ return do_frac_digits(); }
|
{ return this->do_frac_digits(); }
|
||||||
|
|
||||||
pattern
|
pattern
|
||||||
pos_format() const
|
pos_format() const
|
||||||
{ return do_pos_format(); }
|
{ return this->do_pos_format(); }
|
||||||
|
|
||||||
pattern
|
pattern
|
||||||
neg_format() const
|
neg_format() const
|
||||||
{ return do_neg_format(); }
|
{ return this->do_neg_format(); }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual
|
virtual
|
||||||
|
Loading…
Reference in New Issue
Block a user