Commit 8659ee3f authored by Dan Melnic's avatar Dan Melnic Committed by Facebook GitHub Bot

Check for MinGW

Summary: Fix for: https://github.com/facebook/wdt/issues/203

Reviewed By: vitaut

Differential Revision: D24954835

fbshipit-source-id: 92f29f71cd6eef9bdcbe92ed1ecb8f1f5d24326e
parent 7e06aa20
......@@ -16,7 +16,7 @@
#pragma once
#if defined(_WIN32) && !defined(__clang__)
#if defined(_WIN32) && !defined(__MINGW32__) && !defined(__clang__)
#include <assert.h>
#include <folly/Portability.h>
#include <intrin.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