Remove extra semi colon from internal_repo_rocksdb/repo/util/coding_test.cc

Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: palmje

Differential Revision: D55534622

fbshipit-source-id: dfff34924da6f2cdad34ed21f8f08a9bab9189a7
This commit is contained in:
Richard Barnes 2024-03-30 07:17:52 -07:00 committed by Facebook GitHub Bot
parent 21d11de761
commit 7e8003296a
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ TEST(Coding, Varint64) {
values.push_back(power);
values.push_back(power - 1);
values.push_back(power + 1);
};
}
std::string s;
for (unsigned int i = 0; i < values.size(); i++) {