summaryrefslogtreecommitdiff
path: root/src/mongo/db/fts/unicode/byte_vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/fts/unicode/byte_vector.h')
-rw-r--r--src/mongo/db/fts/unicode/byte_vector.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/db/fts/unicode/byte_vector.h b/src/mongo/db/fts/unicode/byte_vector.h
index 13886d16ff3..62dc7e61ba7 100644
--- a/src/mongo/db/fts/unicode/byte_vector.h
+++ b/src/mongo/db/fts/unicode/byte_vector.h
@@ -33,11 +33,11 @@
// TODO replace this with #if BOOST_HW_SIMD_X86 >= BOOST_HW_SIMD_X86_SSE2_VERSION in boost 1.60
#if defined(_M_AMD64) || defined(__amd64__)
-#include "mongo/db/fts/unicode/byte_vector_sse2.h"
+#include "mongo/db/fts/unicode/byte_vector_sse2.h" // IWYU pragma: export
#elif defined(__powerpc64__)
-#include "mongo/db/fts/unicode/byte_vector_altivec.h"
+#include "mongo/db/fts/unicode/byte_vector_altivec.h" // IWYU pragma: export
#elif defined(__aarch64__)
-#include "mongo/db/fts/unicode/byte_vector_neon.h"
-#else // Other platforms go above here.
+#include "mongo/db/fts/unicode/byte_vector_neon.h" // IWYU pragma: export
+#else // Other platforms go above here.
#undef MONGO_HAVE_FAST_BYTE_VECTOR
#endif