diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2016-10-27 15:10:07 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2016-10-27 15:10:07 +0000 |
| commit | d4cd37facace84e678142fcafc1ba8608cf75b3c (patch) | |
| tree | 21929d2fb25e363f567f3cdc6519edb43eb96811 /libcxx/include/string_view | |
| parent | d5b8d64d4b5143a160f291b5f98f40d0fb32003d (diff) | |
| download | bcm5719-llvm-d4cd37facace84e678142fcafc1ba8608cf75b3c.tar.gz bcm5719-llvm-d4cd37facace84e678142fcafc1ba8608cf75b3c.zip | |
Move 'quoted' for string_view from <string_view> to <iomanip> (where the other versions of 'quoted' live. No functional change.
llvm-svn: 285300
Diffstat (limited to 'libcxx/include/string_view')
| -rw-r--r-- | libcxx/include/string_view | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libcxx/include/string_view b/libcxx/include/string_view index 47ea926f637..baba4644552 100644 --- a/libcxx/include/string_view +++ b/libcxx/include/string_view @@ -747,18 +747,6 @@ hash<basic_string_view<_CharT, _Traits> >::operator()( return __do_string_hash(__val.data(), __val.data() + __val.size()); } -#if _LIBCPP_STD_VER > 11 - -template <class _CharT, class _Traits> -__quoted_output_proxy<_CharT, const _CharT *, _Traits> -quoted (basic_string_view <_CharT, _Traits> __sv, - _CharT __delim = _CharT('"'), _CharT __escape=_CharT('\\')) -{ - return __quoted_output_proxy<_CharT, const _CharT *, _Traits> - ( __sv.data(), __sv.data() + __sv.size(), __delim, __escape ); -} -#endif // _LIBCPP_STD_VER > 11 - _LIBCPP_END_NAMESPACE_STD #endif // _LIBCPP_STRING_VIEW |

