Replaced tabs with spaces.

This commit is contained in:
Andrey Semashev 2019-06-25 15:46:36 +03:00
parent 62c34f51f6
commit 9eeb7f85c5

View File

@ -186,7 +186,7 @@ namespace boost {
if (pos > size()) if (pos > size())
BOOST_THROW_EXCEPTION(std::out_of_range("string_view::copy" )); BOOST_THROW_EXCEPTION(std::out_of_range("string_view::copy" ));
size_type rlen = (std::min)(n, len_ - pos); size_type rlen = (std::min)(n, len_ - pos);
traits_type::copy(s, data() + pos, rlen); traits_type::copy(s, data() + pos, rlen);
return rlen; return rlen;
} }