From: Christopher Dykes Date: Mon, 9 May 2016 19:57:08 +0000 (-0700) Subject: Include in GroupVarint.h X-Git-Tag: 2016.07.26~262 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=96fd80716195911406292346d03f3c2155f494a9;p=folly.git 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 --- 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[];