mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 14:29:10 -07:00
fix-the-code-won't compile-with-sdl-checks-on (#550)
This commit is contained in:
parent
3d47a51430
commit
bad6b2d22f
1 changed files with 1 additions and 1 deletions
|
@ -3586,7 +3586,7 @@ inline bool BufferStream::is_readable() const { return true; }
|
|||
inline bool BufferStream::is_writable() const { return true; }
|
||||
|
||||
inline ssize_t BufferStream::read(char *ptr, size_t size) {
|
||||
#if defined(_MSC_VER) && _MSC_VER < 1900
|
||||
#if defined(_MSC_VER) && _MSC_VER <= 1900
|
||||
auto len_read = buffer._Copy_s(ptr, size, size, position);
|
||||
#else
|
||||
auto len_read = buffer.copy(ptr, size, position);
|
||||
|
|
Loading…
Reference in a new issue