cxxabi include should not be used on VC++

This commit is contained in:
ThePhD 2015-07-11 05:28:06 -04:00
parent 9a0dda1f3d
commit 1b8bc7c1e9

View File

@ -26,7 +26,7 @@
#include <array>
#include <cstdlib>
#if defined(__GNUC__) || defined(__clang__)
#if (defined(__GNUC__) || defined(__clang__)) && !defined(_MSC_VER)
#include <cxxabi.h>
#endif