mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
addressing feedback
This commit is contained in:
parent
2b7a8f1f2f
commit
877816faa4
@ -109,7 +109,7 @@ namespace details
|
|||||||
//
|
//
|
||||||
template <typename T, const T Sentinel>
|
template <typename T, const T Sentinel>
|
||||||
span<T, dynamic_extent> ensure_sentinel(T* seq,
|
span<T, dynamic_extent> ensure_sentinel(T* seq,
|
||||||
std::size_t max = std::numeric_limits<std::size_t>::max())
|
std::size_t max = static_cast<std::size_t>(-1))
|
||||||
{
|
{
|
||||||
Ensures(seq != nullptr);
|
Ensures(seq != nullptr);
|
||||||
|
|
||||||
@ -131,7 +131,7 @@ span<T, dynamic_extent> ensure_sentinel(T* seq,
|
|||||||
//
|
//
|
||||||
template <typename CharT>
|
template <typename CharT>
|
||||||
span<CharT, dynamic_extent> ensure_z(CharT* const& sz,
|
span<CharT, dynamic_extent> ensure_z(CharT* const& sz,
|
||||||
std::size_t max = std::numeric_limits<std::size_t>::max())
|
std::size_t max = static_cast<std::size_t>(-1))
|
||||||
{
|
{
|
||||||
return ensure_sentinel<CharT, CharT(0)>(sz, max);
|
return ensure_sentinel<CharT, CharT(0)>(sz, max);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user