diff options
author | Jonathan Wakely <redi@gcc.gnu.org> | 2003-05-02 16:50:53 +0100 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2003-05-02 16:50:53 +0100 |
commit | 8515a6007ca03c711dcee7a6f8e788e38bf025e2 (patch) | |
tree | d2eb517cf5bcbedd7181bbfcbc5888a260edf73a /libstdc++-v3 | |
parent | 3f4a3170f18acee29231fc11cbd4a0758bf80f23 (diff) | |
download | gcc-8515a6007ca03c711dcee7a6f8e788e38bf025e2.zip gcc-8515a6007ca03c711dcee7a6f8e788e38bf025e2.tar.gz gcc-8515a6007ca03c711dcee7a6f8e788e38bf025e2.tar.bz2 |
basic_string.h (swap): Remove redundant template parameters from declaration of non-template member...
2003-05-02 Jonathan Wakely <redi@gcc.gnu.org>
* include/bits/basic_string.h (swap): Remove redundant template
parameters from declaration of non-template member function.
From-SVN: r66389
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/basic_string.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index eb04e9d..95fa8d1 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2003-05-02 Jonathan Wakely <redi@gcc.gnu.org> + + * include/bits/basic_string.h (swap): Remove redundant template + parameters from declaration of non-template member function. + 2003-05-01 Phil Edwards <pme@gcc.gnu.org> * acconfig.h (_GLIBCPP_USE_NLS): New symbol. diff --git a/libstdc++-v3/include/bits/basic_string.h b/libstdc++-v3/include/bits/basic_string.h index bdbd2ddb..04847f7 100644 --- a/libstdc++-v3/include/bits/basic_string.h +++ b/libstdc++-v3/include/bits/basic_string.h @@ -709,7 +709,7 @@ namespace std copy(_CharT* __s, size_type __n, size_type __pos = 0) const; void - swap(basic_string<_CharT, _Traits, _Alloc>& __s); + swap(basic_string& __s); // String operations: const _CharT* |