From: Jonathan Wakely Date: Fri, 2 May 2003 15:50:53 +0000 (+0100) Subject: basic_string.h (swap): Remove redundant template parameters from declaration of non... X-Git-Tag: releases/gcc-3.4.0~6866 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8515a6007ca03c711dcee7a6f8e788e38bf025e2;p=thirdparty%2Fgcc.git basic_string.h (swap): Remove redundant template parameters from declaration of non-template member... 2003-05-02 Jonathan Wakely * include/bits/basic_string.h (swap): Remove redundant template parameters from declaration of non-template member function. From-SVN: r66389 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index eb04e9daa4d6..95fa8d144feb 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 bdbd2ddb18d5..04847f757b2a 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*