diff options
author | Alexandre Petit-Bianco <apbianco@redhat.com> | 2001-09-14 01:38:18 -0700 |
---|---|---|
committer | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 2001-09-14 01:38:18 -0700 |
commit | 733079758939b30bcdb505d5306b49ba60266c8a (patch) | |
tree | e453fdd5c9ccac8d691b2bfb22cdd7ae59b0cc9e | |
parent | 96bbfafed849475d63c2394361ac0704174ee758 (diff) | |
download | gcc-733079758939b30bcdb505d5306b49ba60266c8a.zip gcc-733079758939b30bcdb505d5306b49ba60266c8a.tar.gz gcc-733079758939b30bcdb505d5306b49ba60266c8a.tar.bz2 |
money_get_members_char.cc: Fixed typo in comment.
2001-09-13 Alexandre Petit-Bianco <apbianco@redhat.com>
* testsuite/22_locale/money_get_members_char.cc: Fixed typo in comment.
* testsuite/22_locale/money_put_members_char.cc: Likewise.
* testsuite/22_locale/money_put_members_wchar_t.cc: Likewise.
(If only spelling them right would make them go away...)
From-SVN: r45592
4 files changed, 12 insertions, 6 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index e22c32a..1fcafb6 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -2,6 +2,12 @@ * include/bits/locale_facets.tcc: Conditionalize use of strtold. +2001-09-13 Alexandre Petit-Bianco <apbianco@redhat.com> + + * testsuite/22_locale/money_get_members_char.cc: Fixed typo in comment. + * testsuite/22_locale/money_put_members_char.cc: Likewise. + * testsuite/22_locale/money_put_members_wchar_t.cc: Likewise. + 2001-09-13 Benjamin Kosnik <bkoz@redhat.com> Implement std::money_get. diff --git a/libstdc++-v3/testsuite/22_locale/money_get_members_char.cc b/libstdc++-v3/testsuite/22_locale/money_get_members_char.cc index 6b035e5..a3e8ad6 100644 --- a/libstdc++-v3/testsuite/22_locale/money_get_members_char.cc +++ b/libstdc++-v3/testsuite/22_locale/money_get_members_char.cc @@ -74,7 +74,7 @@ void test01() // total EPA budget FY 2002 const string digits1("720000000000"); - // est. cost, national missle "defense", expressed as a loss in USD 2001 + // est. cost, national missile "defense", expressed as a loss in USD 2001 const string digits2("-10000000000000"); // not valid input @@ -230,7 +230,7 @@ void test02() // total EPA budget FY 2002 const long double digits1 = 720000000000; - // est. cost, national missle "defense", expressed as a liss in USD 2001 + // est. cost, national missile "defense", expressed as a loss in USD 2001 const long double digits2 = -10000000000000; // input less than frac_digits diff --git a/libstdc++-v3/testsuite/22_locale/money_put_members_char.cc b/libstdc++-v3/testsuite/22_locale/money_put_members_char.cc index 5495afe..b6bc9a9 100644 --- a/libstdc++-v3/testsuite/22_locale/money_put_members_char.cc +++ b/libstdc++-v3/testsuite/22_locale/money_put_members_char.cc @@ -74,7 +74,7 @@ void test01() // total EPA budget FY 2002 const string digits1("720000000000"); - // est. cost, national missle "defense", expressed as a loss in USD 2001 + // est. cost, national missile "defense", expressed as a loss in USD 2001 const string digits2("-10000000000000"); // not valid input @@ -219,7 +219,7 @@ void test02() // total EPA budget FY 2002 const long double digits1 = 720000000000; - // est. cost, national missle "defense", expressed as a loss in USD 2001 + // est. cost, national missile "defense", expressed as a loss in USD 2001 const long double digits2 = -10000000000000; // input less than frac_digits diff --git a/libstdc++-v3/testsuite/22_locale/money_put_members_wchar_t.cc b/libstdc++-v3/testsuite/22_locale/money_put_members_wchar_t.cc index e3399f3..13c368e 100644 --- a/libstdc++-v3/testsuite/22_locale/money_put_members_wchar_t.cc +++ b/libstdc++-v3/testsuite/22_locale/money_put_members_wchar_t.cc @@ -75,7 +75,7 @@ void test01() // total EPA budget FY 2002 const wstring digits1(L"720000000000"); - // est. cost, national missle "defense", expressed as a loss in USD 2001 + // est. cost, national missile "defense", expressed as a loss in USD 2001 const wstring digits2(L"-10000000000000"); // not valid input @@ -220,7 +220,7 @@ void test02() // total EPA budget FY 2002 const long double digits1 = 720000000000; - // est. cost, national missle "defense", expressed as a loss in USD 2001 + // est. cost, national missile "defense", expressed as a loss in USD 2001 const long double digits2 = -10000000000000; // input less than frac_digits |