From 69b362269a719b38da225e80b37add31265eac81 Mon Sep 17 00:00:00 2001 From: Lucian Petrut Date: Tue, 8 Oct 2019 14:59:41 +0300 Subject: [PATCH] include/buffer: Extend win32 platform check is unavailable on Windows. There's a check for __CYGWIN__ that will have to be extended to look for _WIN32. Signed-off-by: Lucian Petrut --- src/include/buffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/buffer.h b/src/include/buffer.h index 3f00dbcc2a507..a895e1c967ab3 100644 --- a/src/include/buffer.h +++ b/src/include/buffer.h @@ -34,7 +34,7 @@ #include #include -#ifndef __CYGWIN__ +#if !defined(__CYGWIN__) && !defined(_WIN32) # include #endif -- 2.39.5