From: redi Date: Fri, 2 May 2003 15:50:53 +0000 (+0000) Subject: 2003-05-02 Jonathan Wakely X-Git-Url: http://git.sourceforge.jp/view?a=commitdiff_plain;h=b5811729c232f725eff87a9068101d4610074a51;hp=c379fe4c3643a48371eee6ddc6b158aca08efca3;p=pf3gnuchains%2Fgcc-fork.git 2003-05-02 Jonathan Wakely * include/bits/basic_string.h (swap): Remove redundant template parameters from declaration of non-template member function. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66389 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index eb04e9daa4d..95fa8d144fe 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2003-05-02 Jonathan Wakely + + * include/bits/basic_string.h (swap): Remove redundant template + parameters from declaration of non-template member function. + 2003-05-01 Phil Edwards * 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 bdbd2ddb18d..04847f757b2 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*