🏁 remove failing code for Clang/Windows
This commit is contained in:
parent
609a0046c4
commit
b2240f7508
1 changed files with 5 additions and 0 deletions
|
@ -1965,9 +1965,14 @@ TEST_CASE("regression tests, exceptions dependent")
|
||||||
/////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////
|
||||||
// for #1642
|
// for #1642
|
||||||
/////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// the code below fails with Clang on Windows, so we need to exclude it there
|
||||||
|
#if defined(__clang__) && (defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__))
|
||||||
|
#else
|
||||||
template <typename T> class array {};
|
template <typename T> class array {};
|
||||||
template <typename T> class object {};
|
template <typename T> class object {};
|
||||||
template <typename T> class string {};
|
template <typename T> class string {};
|
||||||
template <typename T> class number_integer {};
|
template <typename T> class number_integer {};
|
||||||
template <typename T> class number_unsigned {};
|
template <typename T> class number_unsigned {};
|
||||||
template <typename T> class number_float {};
|
template <typename T> class number_float {};
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue