Skip to content

Commit 36dfc5b

Browse files
authored
Add missing strings.h include for non-windows builds (required by strcasecmp) (simdjson#1067)
addresses simdjson#1066
1 parent f80668e commit 36dfc5b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

include/simdjson/portability.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
#include <cstdlib>
77
#include <cfloat>
88
#include <cassert>
9+
#ifndef _WIN32
10+
#include <strings.h>
11+
#endif
912

1013
#ifdef _MSC_VER
1114
#define SIMDJSON_VISUAL_STUDIO 1

0 commit comments

Comments
 (0)