From a4f873508748522150eed180a20ce791d62396f4 Mon Sep 17 00:00:00 2001 From: Junjie Qi Date: Wed, 3 Jul 2024 00:52:26 -0700 Subject: [PATCH] Adding missing includes which are necessary for building (#3609) Summary: Pull Request resolved: https://github.com/facebookresearch/faiss/pull/3609 The current version of Faiss cannot be built due to missing #includes on a test file tests/test_ivf_index.cpp. This is better described in issue #3532. https://github.com/facebookresearch/faiss/pull/3533 Differential Revision: D59314273 --- tests/test_ivf_index.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_ivf_index.cpp b/tests/test_ivf_index.cpp index 54cb7945f9..b3786f597b 100644 --- a/tests/test_ivf_index.cpp +++ b/tests/test_ivf_index.cpp @@ -6,12 +6,14 @@ */ #include +#include #include #include #include #include #include #include +#include #include