Skip to content

Commit

Permalink
Remove extra semi colon from faiss/Clustering.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: D52969138

fbshipit-source-id: bdde568b9bc6f4cc650e131a471a41f6bc2f3f95
  • Loading branch information
r-barnes authored and facebook-github-bot committed Jan 23, 2024
1 parent 683eadf commit b10eb35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions faiss/Clustering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ int split_clusters(
return nsplit;
}

}; // namespace
} // namespace

void Clustering::train_encoded(
idx_t nx,
Expand Down Expand Up @@ -617,7 +617,7 @@ void copy_columns(idx_t n, idx_t d1, const float* src, idx_t d2, float* dest) {
}
}

}; // namespace
} // namespace

void ProgressiveDimClustering::train(
idx_t n,
Expand Down

0 comments on commit b10eb35

Please sign in to comment.