From 5363be7a9cd4a6d86973eabb593456fd25cb635b Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Mon, 23 Jan 2017 21:24:58 +0000 Subject: [PATCH] Fix GCC C++03 build by hiding default template argument in C++03 llvm-svn: 292830 --- libcxx/include/string | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libcxx/include/string b/libcxx/include/string index 7d7994eaca1b..ba311efa5a31 100644 --- a/libcxx/include/string +++ b/libcxx/include/string @@ -818,7 +818,10 @@ public: operator __self_view() const _NOEXCEPT { return __self_view(data(), size()); } basic_string& operator=(const basic_string& __str); + +#ifndef _LIBCPP_CXX03_LANG template +#endif _LIBCPP_INLINE_VISIBILITY basic_string& operator=(__self_view __sv) {return assign(__sv);} #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES