Skip to content

Commit

Permalink
Remove extra semi colon from faiss/utils/distances_simd.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: D52965948

fbshipit-source-id: e24e38ecbb7e0c957b024a1ae7b2ec94d2fa0adf
  • Loading branch information
r-barnes authored and facebook-github-bot committed Jan 23, 2024
1 parent 522452f commit 683eadf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion faiss/utils/distances_simd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,6 @@ void fvec_L2sqr_ny_y_transposed_D(

// squared length of x
float x_sqlen = 0;
;
for (size_t j = 0; j < DIM; j++) {
x_sqlen += x[j] * x[j];
}
Expand Down

0 comments on commit 683eadf

Please sign in to comment.