Commit abc7ab99 authored by Yedidya Feldblum's avatar Yedidya Feldblum Committed by Facebook Github Bot

kIsClang

Summary: [Folly] `kIsClang`.

Reviewed By: Igman

Differential Revision: D14844691

fbshipit-source-id: 80a738d5925d6d61e69f38ef5b43bf47691d233a
parent 9a38d122
......@@ -435,6 +435,12 @@ constexpr auto kMscVer = _MSC_VER;
constexpr auto kMscVer = 0;
#endif
#if __clang__
constexpr auto kIsClang = true;
#else
constexpr auto kIsClang = false;
#endif
#if FOLLY_MICROSOFT_ABI_VER
constexpr auto kMicrosoftAbiVer = FOLLY_MICROSOFT_ABI_VER;
#else
......
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