Remove inline added for the now unsupported MSVC 2013. (#585)

This commit is contained in:
Johel Ernesto Guerrero Peña
2018-02-20 18:46:37 -04:00
committed by Neil MacIntosh
parent f8f265be84
commit 73db6ef98f
5 changed files with 58 additions and 57 deletions

View File

@ -130,7 +130,7 @@ span<T, dynamic_extent> ensure_sentinel(T* seq, std::ptrdiff_t max = PTRDIFF_MAX
// the limit of size_type.
//
template <typename CharT>
inline span<CharT, dynamic_extent> ensure_z(CharT* const& sz, std::ptrdiff_t max = PTRDIFF_MAX)
span<CharT, dynamic_extent> ensure_z(CharT* const& sz, std::ptrdiff_t max = PTRDIFF_MAX)
{
return ensure_sentinel<CharT, CharT(0)>(sz, max);
}