Add or modify basic_string_view typedefs to match TS. Add BOOST_CONSTEXPR and BOOST_NOEXCEPT where specified in the TS. Add swap, copy, and five compare compare signatures per TS. Untested except for typedefs.

This commit is contained in:
Beman
2015-07-06 11:24:27 -04:00
parent 57d2173de9
commit 250aaa73e8
2 changed files with 271 additions and 191 deletions

View File

@@ -24,6 +24,11 @@ namespace
int main()
{
typedef boost::string_view::traits_type string_traits;
typedef boost::string_view::const_pointer const_pointer;
// swap
// copy
// compare, five new signatures
return boost::report_errors();
}