From 9eeb7f85c57b1c7a6d320594f2630c7514c71bed Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Tue, 25 Jun 2019 15:46:36 +0300 Subject: [PATCH] Replaced tabs with spaces. --- include/boost/utility/string_view.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/utility/string_view.hpp b/include/boost/utility/string_view.hpp index 1677e9f..ba4ef93 100644 --- a/include/boost/utility/string_view.hpp +++ b/include/boost/utility/string_view.hpp @@ -186,7 +186,7 @@ namespace boost { if (pos > size()) BOOST_THROW_EXCEPTION(std::out_of_range("string_view::copy" )); size_type rlen = (std::min)(n, len_ - pos); - traits_type::copy(s, data() + pos, rlen); + traits_type::copy(s, data() + pos, rlen); return rlen; }