Fixed snprintf compile error with VS2015.

pull/3/head
yhirose 9 years ago
parent 5022bef3d7
commit de1f7ebad6
  1. 2
      lint/playground/httplib.h

@ -18,7 +18,7 @@
#ifndef SO_OPENTYPE
#define SO_OPENTYPE 0x7008
#endif
#ifndef snprintf
#if (_MSC_VER < 1900)
#define snprintf _snprintf_s
#endif

Loading…
Cancel
Save