From 8fe9325d6dee2861f4bcbda16f87eb0c16bab17d Mon Sep 17 00:00:00 2001 From: Krystian Stasiowski Date: Mon, 6 Apr 2020 17:57:57 -0400 Subject: [PATCH] Whitespace fix --- include/boost/static_string/static_string.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/static_string/static_string.hpp b/include/boost/static_string/static_string.hpp index c5f7c01..23f59c7 100644 --- a/include/boost/static_string/static_string.hpp +++ b/include/boost/static_string/static_string.hpp @@ -3442,7 +3442,8 @@ public: size_type pos = 0, size_type count = npos) const { - return basic_static_string(data() + pos, capped_length(pos, count)); + return basic_static_string( + data() + pos, capped_length(pos, count)); } /** Return a string view of a substring. @@ -3469,7 +3470,6 @@ public: size_type pos = 0, size_type count = npos) const { - return string_view_type( data() + pos, capped_length(pos, count)); } @@ -6503,4 +6503,4 @@ insert_unchecked( } // static_strings } // boost #endif -#endif \ No newline at end of file +#endif