Removed more string_view dependency

This commit is contained in:
Krystian Stasiowski
2019-10-27 17:18:19 -04:00
parent 9156aa8ec8
commit 79df90dde0
3 changed files with 21 additions and 10 deletions

View File

@ -125,6 +125,7 @@ fixed_string(string_view_type sv)
}
#endif
#ifdef BOOST_FIXED_STRING_STRING_VIEW
template<std::size_t N, typename CharT, typename Traits>
template<class T, class>
fixed_string<N, CharT, Traits>::
@ -132,6 +133,7 @@ fixed_string(T const& t, size_type pos, size_type n)
{
assign(t, pos, n);
}
#endif
//------------------------------------------------------------------------------
//