From 729a66f0044f1a893bcb47c0ab429b4f0b52600d Mon Sep 17 00:00:00 2001 From: Richard Barnes Date: Thu, 23 May 2024 07:47:33 -0700 Subject: [PATCH] Remove extra semi colon from deprecated/libmccpp/ThreadSafeClientPool.h (#3479) Summary: Pull Request resolved: https://github.com/facebookresearch/faiss/pull/3479 `-Wextra-semi` or `-Wextra-semi-stmt` If the code compiles, this is safe to land. Reviewed By: palmje Differential Revision: D57632759 fbshipit-source-id: 48bc23e87b3f518182085124c4c8e68ddbb3ca8f --- tests/test_common_ivf_empty_index.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_common_ivf_empty_index.cpp b/tests/test_common_ivf_empty_index.cpp index 1a99b77141..a3e33031bd 100644 --- a/tests/test_common_ivf_empty_index.cpp +++ b/tests/test_common_ivf_empty_index.cpp @@ -23,7 +23,7 @@ namespace { int d = 64; -}; // namespace +} // namespace std::vector get_random_vectors(size_t n, int seed) { std::vector x(n * d);