From 96fd80716195911406292346d03f3c2155f494a9 Mon Sep 17 00:00:00 2001 From: Christopher Dykes Date: Mon, 9 May 2016 12:57:08 -0700 Subject: [PATCH] Include in GroupVarint.h Summary: Because it is the standard (well, Intel's standard) location for __m128i, and GCC, Clang, MSVC and ICC all implement it in that location. Reviewed By: yfeldblum Differential Revision: D3270872 fbshipit-source-id: fa0f0410670cdb310e656ca55ee0f568ca5ee06f --- folly/GroupVarint.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/folly/GroupVarint.h b/folly/GroupVarint.h index f91191ce..b17d15f7 100644 --- a/folly/GroupVarint.h +++ b/folly/GroupVarint.h @@ -30,10 +30,11 @@ #include #include #include +#include #include #if FOLLY_SSE >= 3 -#include +#include namespace folly { namespace detail { extern const __m128i groupVarintSSEMasks[]; -- 2.34.1