summaryrefslogtreecommitdiff
path: root/include/string_view
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2016-10-27 15:10:07 +0000
committerMarshall Clow <mclow.lists@gmail.com>2016-10-27 15:10:07 +0000
commit276a5209a377f1d82d2d3aa2bbe2cdfb8e185304 (patch)
tree77bcdf22fb2f002f228e1f3ed1be38c6a5702405 /include/string_view
parent856947863f062ea4b2213a071f7db620a61582ab (diff)
Move 'quoted' for string_view from <string_view> to <iomanip> (where the other versions of 'quoted' live. No functional change.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@285300 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/string_view')
-rw-r--r--include/string_view12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/string_view b/include/string_view
index 47ea926f6..baba46445 100644
--- a/include/string_view
+++ b/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