Skip to content

Commit

Permalink
Remove extra semi colon from fatal/string/rope.h
Browse files Browse the repository at this point in the history
Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: dmm-fb

Differential Revision: D52965935

fbshipit-source-id: ff098f6836e0175b4f8be41874890147e8195d24
  • Loading branch information
r-barnes authored and facebook-github-bot committed Jan 25, 2024
1 parent 425d5c0 commit 0874680
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fatal/string/rope.h
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ struct rope {
} else {
break;
}
};
}

return begin;
}
Expand Down Expand Up @@ -1500,7 +1500,7 @@ struct rope {
auto const off = static_cast<size_type>(std::distance(ref.begin(), j));
return const_iterator(this, std::addressof(pieces_[i]), i, off);
}
};
}

return cend();
}
Expand Down

0 comments on commit 0874680

Please sign in to comment.