Remove extraneous semicolon; no functional change

This commit is contained in:
Marshall Clow
2016-08-14 11:19:32 -07:00
parent c5b1256650
commit 8392991c46

View File

@@ -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);