Whitespace fix

This commit is contained in:
Krystian Stasiowski
2020-04-06 17:57:57 -04:00
committed by GitHub
parent 0b231586ed
commit 8fe9325d6d

View File

@ -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
#endif