Disable wstring unit test on ICPC

Fixes:
  error 913: invalid multibyte character sequence
This commit is contained in:
Florian Albrechtskirchinger 2022-05-01 15:07:19 +02:00
parent d113f118ce
commit c86929a87d
No known key found for this signature in database
GPG Key ID: 19618CE9B2D4BE6D

View File

@ -32,6 +32,8 @@ SOFTWARE.
#include <nlohmann/json.hpp>
using nlohmann::json;
// ICPC errors out on multibyte character sequences in source files
#ifndef __INTEL_COMPILER
namespace
{
bool wstring_is_utf16();
@ -115,3 +117,4 @@ TEST_CASE("wide strings")
}
}
}
#endif