forked from boostorg/utility
Remove extraneous semicolon; no functional change
This commit is contained in:
@@ -322,7 +322,7 @@ namespace boost {
|
|||||||
// find_last_not_of
|
// find_last_not_of
|
||||||
BOOST_CXX14_CONSTEXPR size_type find_last_not_of(basic_string_view s, size_type pos = npos) const BOOST_NOEXCEPT {
|
BOOST_CXX14_CONSTEXPR size_type find_last_not_of(basic_string_view s, size_type pos = npos) const BOOST_NOEXCEPT {
|
||||||
if (pos >= len_)
|
if (pos >= len_)
|
||||||
pos = len_ - 1;;
|
pos = len_ - 1;
|
||||||
if (s.len_ == 0u)
|
if (s.len_ == 0u)
|
||||||
return pos;
|
return pos;
|
||||||
pos = len_ - (pos+1);
|
pos = len_ - (pos+1);
|
||||||
|
Reference in New Issue
Block a user