From 24cc0de967b57f7d1d911921e4cd5332b039380a Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Fri, 29 Nov 2019 17:43:55 +0000 Subject: [PATCH] libstdc++: Adjust some function templates for coding conventions * include/bits/fs_path.h (path::operator/=): Change template-head to use typename instead of class. * include/experimental/bits/fs_path.h (path::operator/=): Likewise. * include/std/ostream (operator<<): Likewise. From-SVN: r278859 --- libstdc++-v3/ChangeLog | 7 +++++ libstdc++-v3/include/bits/fs_path.h | 2 +- libstdc++-v3/include/experimental/bits/fs_path.h | 2 +- libstdc++-v3/include/std/ostream | 40 ++++++++++++------------ 4 files changed, 29 insertions(+), 22 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 5cc6aac..ded6e5c 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2019-11-29 Jonathan Wakely + + * include/bits/fs_path.h (path::operator/=): Change template-head to + use typename instead of class. + * include/experimental/bits/fs_path.h (path::operator/=): Likewise. + * include/std/ostream (operator<<): Likewise. + 2019-11-29 Tom Honermann New tests diff --git a/libstdc++-v3/include/bits/fs_path.h b/libstdc++-v3/include/bits/fs_path.h index 6434782..b129372 100644 --- a/libstdc++-v3/include/bits/fs_path.h +++ b/libstdc++-v3/include/bits/fs_path.h @@ -272,7 +272,7 @@ namespace __detail path& operator/=(const path& __p); - template + template __detail::_Path<_Source>& operator/=(_Source const& __source) { diff --git a/libstdc++-v3/include/experimental/bits/fs_path.h b/libstdc++-v3/include/experimental/bits/fs_path.h index b924fbf..91202e5 100644 --- a/libstdc++-v3/include/experimental/bits/fs_path.h +++ b/libstdc++-v3/include/experimental/bits/fs_path.h @@ -278,7 +278,7 @@ namespace __detail path& operator/=(const path& __p) { return _M_append(__p._M_pathname); } - template + template __detail::_Path<_Source>& operator/=(_Source const& __source) { return append(__source); } diff --git a/libstdc++-v3/include/std/ostream b/libstdc++-v3/include/std/ostream index 771c28d..895e4d7 100644 --- a/libstdc++-v3/include/std/ostream +++ b/libstdc++-v3/include/std/ostream @@ -512,18 +512,18 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION { return (__out << __out.widen(__c)); } // Specialization - template + template inline basic_ostream& operator<<(basic_ostream& __out, char __c) { return __ostream_insert(__out, &__c, 1); } // Signed and unsigned - template + template inline basic_ostream& operator<<(basic_ostream& __out, signed char __c) { return (__out << static_cast(__c)); } - template + template inline basic_ostream& operator<<(basic_ostream& __out, unsigned char __c) { return (__out << static_cast(__c)); } @@ -533,37 +533,37 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // numeric values. #ifdef _GLIBCXX_USE_WCHAR_T - template + template basic_ostream& operator<<(basic_ostream&, wchar_t) = delete; #endif // _GLIBCXX_USE_WCHAR_T #ifdef _GLIBCXX_USE_CHAR8_T - template + template basic_ostream& operator<<(basic_ostream&, char8_t) = delete; #endif - template + template basic_ostream& operator<<(basic_ostream&, char16_t) = delete; - template + template basic_ostream& operator<<(basic_ostream&, char32_t) = delete; #ifdef _GLIBCXX_USE_WCHAR_T #ifdef _GLIBCXX_USE_CHAR8_T - template + template basic_ostream& operator<<(basic_ostream&, char8_t) = delete; #endif // _GLIBCXX_USE_CHAR8_T - template + template basic_ostream& operator<<(basic_ostream&, char16_t) = delete; - template + template basic_ostream& operator<<(basic_ostream&, char32_t) = delete; #endif // _GLIBCXX_USE_WCHAR_T @@ -601,7 +601,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION operator<<(basic_ostream<_CharT, _Traits>& __out, const char* __s); // Partial specializations - template + template inline basic_ostream& operator<<(basic_ostream& __out, const char* __s) { @@ -614,12 +614,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION } // Signed and unsigned - template + template inline basic_ostream& operator<<(basic_ostream& __out, const signed char* __s) { return (__out << reinterpret_cast(__s)); } - template + template inline basic_ostream & operator<<(basic_ostream& __out, const unsigned char* __s) { return (__out << reinterpret_cast(__s)); } @@ -629,37 +629,37 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // pointer values. #ifdef _GLIBCXX_USE_WCHAR_T - template + template basic_ostream& operator<<(basic_ostream&, const wchar_t*) = delete; #endif // _GLIBCXX_USE_WCHAR_T #ifdef _GLIBCXX_USE_CHAR8_T - template + template basic_ostream& operator<<(basic_ostream&, const char8_t*) = delete; #endif // _GLIBCXX_USE_CHAR8_T - template + template basic_ostream& operator<<(basic_ostream&, const char16_t*) = delete; - template + template basic_ostream& operator<<(basic_ostream&, const char32_t*) = delete; #ifdef _GLIBCXX_USE_WCHAR_T #ifdef _GLIBCXX_USE_CHAR8_T - template + template basic_ostream& operator<<(basic_ostream&, const char8_t*) = delete; #endif - template + template basic_ostream& operator<<(basic_ostream&, const char16_t*) = delete; - template + template basic_ostream& operator<<(basic_ostream&, const char32_t*) = delete; #endif // _GLIBCXX_USE_WCHAR_T -- 2.7.4