Skip to content

Commit

Permalink
Check for MinGW
Browse files Browse the repository at this point in the history
Summary: Fix for: facebook/wdt#203

Reviewed By: vitaut

Differential Revision: D24954835

fbshipit-source-id: 92f29f71cd6eef9bdcbe92ed1ecb8f1f5d24326e
  • Loading branch information
dmm-fb authored and dotconnor committed Mar 18, 2021
1 parent f07fd71 commit fcca7d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion folly/portability/Builtins.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit fcca7d0

Please sign in to comment.