Commit a51326dc authored by Orvid King's avatar Orvid King Committed by facebook-github-bot-4

Support GroupVarint.h under MSVC

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
parent 778b5711
......@@ -17,8 +17,8 @@
#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>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment