Skip to content

Commit

Permalink
Remove extra semi colon from faiss/invlists/InvertedLists.cpp
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: algoriddle

Differential Revision: D52969085

fbshipit-source-id: f532f9000abd580e53159f660f6703dacb02796f
  • Loading branch information
r-barnes authored and facebook-github-bot committed Jan 23, 2024
1 parent 7e01b47 commit 3e666ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions faiss/invlists/InvertedLists.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ idx_t translate_list_no(const SliceInvertedLists* sil, idx_t list_no) {
return list_no + sil->i0;
}

}; // namespace
} // namespace

SliceInvertedLists::SliceInvertedLists(
const InvertedLists* il,
Expand Down Expand Up @@ -522,7 +522,7 @@ idx_t sum_il_sizes(int nil, const InvertedLists** ils_in) {
return tot;
}

}; // namespace
} // namespace

VStackInvertedLists::VStackInvertedLists(int nil, const InvertedLists** ils_in)
: ReadOnlyInvertedLists(
Expand Down

0 comments on commit 3e666ae

Please sign in to comment.