Summary: MSVC supports the intrinsics used by it without any issue other changes, so just make sure the error doesn't trigger on MSVC.
Closes #252
Reviewed By: @yfeldblum
Differential Revision:
D2282942
Pulled By: @sgolemon
#ifndef FOLLY_GROUPVARINT_H_
#define FOLLY_GROUPVARINT_H_
-#ifndef __GNUC__
-#error GroupVarint.h requires GCC
+#if !defined(__GNUC__) && !defined(_MSC_VER)
+#error GroupVarint.h requires GCC or MSVC
#endif
#include <folly/Portability.h>