Improving support for VS

This commit is contained in:
Daniel Lemire
2019-07-04 17:36:26 -04:00
parent 2b2d93b05f
commit 19cdc09928
3 changed files with 20 additions and 21 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ int json_parse_dispatch(const uint8_t *buf, size_t len, ParsedJson &pj, bool rea
json_parse_ptr = avx_implementation;
break;
#endif
#ifdef __SSE4_2__
#if defined(__SSE4_2__) || (defined(_MSC_VER) && defined(_M_AMD64))
case instruction_set::sse4_2 :
json_parse_ptr = sse4_2_implementation;
break;