Remove extra semi colon from hbt/src/tagstack/tests/SlicerTest.cpp (#12461)

Summary:
Pull Request resolved: https://github.com/facebook/rocksdb/pull/12461

X-link: https://github.com/facebookincubator/dynolog/pull/233

`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: rahku

Differential Revision: D55087324

fbshipit-source-id: e8a03d33cad72a7d378e58f85eb550a03f6c2897
This commit is contained in:
Richard Barnes 2024-03-20 12:44:50 -07:00 committed by Facebook GitHub Bot
parent 4ce1dc930c
commit 6a1c2abe9d
1 changed files with 1 additions and 1 deletions

View File

@ -484,7 +484,7 @@ void VersionEdit::EncodeFileBoundaries(std::string* dst,
StripTimestampFromInternalKey(&largest_buf, meta.largest.Encode(), ts_sz);
PutLengthPrefixedSlice(dst, smallest_buf);
PutLengthPrefixedSlice(dst, largest_buf);
};
}
Status VersionEdit::DecodeFrom(const Slice& src) {
Clear();